Reputation: 3826
In C#, is there a way to put a static variable in a method like VB.Net?
Static myCollection As Collection
Upvotes: 15
Views: 24090
Reputation: 8190
I'm pretty sure the C# equivalent is const
: therefore:
public const Collection myCollection = new Collection();
I'm not too familiar with VB.NET, so I could be off base, but that will allow you set a variable which cannot be changed.
Upvotes: -6
Reputation: 67068
No there isn't but how is this different then having a static variable at the class level?
Actually if you look into how shared is implemented, it is a compiler trick that creates a static field on the class.
Upvotes: 5
Reputation: 14513
Why doesn't C# support static method variables?
Q: In C++, it's possible to write a static method variable, and have a variable that can only be accessed from inside the method. C# doesn't provide this feature. Why?
A: There are two reasons C# doesn't have this feature.
First, it is possible to get nearly the same effect by having a class-level static, and adding method statics would require increased complexity.
Second, method level statics are somewhat notorious for causing problems when code is called repeatedly or from multiple threads, and since the definitions are in the methods, it's harder to find the definitions.
-- msdn c# faq
Upvotes: 21
Reputation: 74270
No, The CLR does not support this, and VB.NET resorts to compiler tricks to allow it. Ugh.
Upvotes: 1
Reputation: 351516
The closest thing to VB.NET's Static
is to create a field in the current type. Other than that C# has no equivalent.
Upvotes: 3