Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can overrride the Main method

Answers were Sorted based on User's Feedback



Can overrride the Main method..

Answer / shashi bhushan vishwakarma(tus

we can not override the Main method but we can use multiple
Main method within the same class also and within the same
namespace also.
ex.
namespace ConsoleApplication1
{
class Program
{
public void Main()
{
Console.WriteLine("hello");
}
public static void Main(string[] args)
{
Console.WriteLine("hello c# 2010");

Program o = new Program();
o.Main();
Console.ReadLine();

}
}
}

Output:
hello c# 2010
hello

another Ex.

namespace ConsoleApplication1
{
class Program
{

public static void Main(string[] args)
{
Console.WriteLine("hello c# 2010");

a obj = new a();
obj.Main();
Console.ReadLine();

}
}


class a:Program
{
public void Main()
{
Console.WriteLine("hello");
}

}
}

output:
hello c# 2010
hello

Is This Answer Correct ?    17 Yes 1 No

Can overrride the Main method..

Answer / hellobapi

Base on the question,we can not override the main method in
a same class.
but in same namespace and in different classes we can use
many main methid. but at compile time their should be
specify.

Is This Answer Correct ?    11 Yes 6 No

Can overrride the Main method..

Answer / radix

No u cant

Is This Answer Correct ?    5 Yes 2 No

Can overrride the Main method..

Answer / swadesh kumar

we can not override main metod but use multiple main metod

Is This Answer Correct ?    1 Yes 1 No

Can overrride the Main method..

Answer / guest

no we can t override main method ,but we use as multiple
times main method

Is This Answer Correct ?    0 Yes 0 No

Can overrride the Main method..

Answer / mukul

we can use multiple Main method within the same class and within the same namespace, but we can't override Main bcoz Main() is static.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Any .net training centers available near hitech city , hyderabad?

2 Answers  


What is session state in asp net c# with example?

0 Answers  


How do you escape c#?

0 Answers  


What is the benefit of interface in c#?

0 Answers  


How can you write a class to restrict that only one object of this class can be created (Singleton class)?

0 Answers  


Explain polymorphism in c# with a simple example?

0 Answers  


What does it mean?

0 Answers  


Explain Constructor and destructor?

0 Answers  


How you will create satellite assemblies?

0 Answers  


Can we declare private class in c#?

0 Answers  


What are the advantages of clr procedure over t-sql procedure?

0 Answers  


Is c# used for frontend or backend?

0 Answers  


Categories