using System;
class Movie
{
private string _movie_field = "Titanic";
public string Movie_property_readOnly
{
get
{
return _movie_field;
}
}
}
|
Class Movie
Private _movie_field As String = "Titanic"
Public ReadOnly Property Movie_property_readOnly() As String
Get
Return _movie_field
End Get
End Property
End Class
|