9
1
Option Strict On
2
Public Class Foo
3
Private _bar As String
4
Public ReadOnly Property Bar As String
5
Get
6
Return _bar
7
End Get
8
End Property
9
End Class
Cached Result
output AZ
Run-time exception (line 28): Console.Read is not supported.
Stack Trace:
[System.NotImplementedException: Console.Read is not supported.]
at DotNetFiddle.Infrastructure.ConsoleStringReader.Read() :line 28
at System.IO.TextReader.SyncTextReader.Read()
at System.Console.Read()
at Program.Main() :line 12
Run-time exception (line 28): Console.Read is not supported.
Stack Trace:
[System.NotImplementedException: Console.Read is not supported.]
at DotNetFiddle.Infrastructure.ConsoleStringReader.Read() :line 28
at System.IO.TextReader.SyncTextReader.Read()
at System.Console.Read()
at Program.Main() :line 12