In C#, is there a way to put a static variable in a method like VB.Net?
Static myCollection As Collection
No, The CLR does not support this, and VB.NET resorts to compiler tricks to allow it. Ugh.