vote up 3 vote down star

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?

flag

If you're being forced to use VB.NET, learn about the AndAlso and OrElse keywords as well. – overslacked Mar 3 at 16:56
I'd like to use the OrElse keyword (threat) on my code sometimes, too. – tvanfosson Mar 3 at 17:01
I wonder... does OrElse threaten the compiler? – Randolpho Mar 3 at 17:02
only if Jon Skeet uses it. – StingyJack Mar 3 at 17:07

1 Answer

vote up 13 vote down check

Amazingly enough, it's ReadOnly

link|flag
Private Const Root_Path as string = "C:\app\data" Private Readonly Backup_Path As String = IO.path.combine(Root_Path, "\Backup") That is one of my favorite uses for it :) – Pondidum Mar 3 at 16:58
I think what's truly amazing is that it only took me a 30 second google query to determine that. – Randolpho Mar 3 at 16:58
Hmm, that didnt format so well :( – Pondidum Mar 3 at 16:58
Suits me right for not trying it. I was stuck thinking ReadOnly only applied to properties. Thanks! – Scott Whitlock Mar 3 at 17:01
Actually, I kept searching: VB.NET immutable (which was getting me nowhere) – Scott Whitlock Mar 3 at 17:02
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.