47

Struct with “main method” as an entry point

 4 years ago
source link: https://www.tabsoverspaces.com/233805-struct-with-main-method-as-an-entry-point
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Have you ever thought about the most basic structure of an application? The main method and its placement in Program class

Today as I was creating yet another console app to test something (boxing of structs, in case you’d like to ask) I looked at the class Program piece and tried to rewrite it to struct . Just to try it. Would it work? Given the main does not even have to be public and it’s static , which works for struct , it probably should, right?

struct Program
{
	static void Main(string[] args)
	{
		Console.WriteLine("Hello struct!");
	}
}

Trying to compile this simple piece of code works like a charm. Are you asking what this might be useful for? I don’t have an answer. I think it does not have any real useful application. But this made me look up “specification” of what main method should look like , at least.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK