I understand that C# console applications need an entry point of Main(), and that Main() can return and integer or nothing. My question is, what do people typically put in this method? I understand that the method is needed otherwise the compiler will not know where to start, but it kind of seems like a waste. For instance, I am working on part of an EDI and the first task is to read the contents of a directory into an array, but this does not...