In C# you can do this to make your member variable immutable:
public readonly int y = 5;
What is the equivalent "readonly" keyword in VB.NET?
In C# you can do this to make your member variable immutable:
public readonly int y = 5;
What is the equivalent "readonly" keyword in VB.NET?