System.String
Get/Set
The Remarks property is used to attach text information to a Serializable object. It is generally used to provide a qualitative description of the object, but the contents of the Remarks property are solely for the convenience of the user and can be set accordingly.
Private Sub GeoCalcNET_Serializable_Remarks(ByVal s As GeoCalcNET.Serializable)
Dim remarks As String = s.Remarks
s.Remarks = "this is a remarkable serializable"
End Sub
private void GeoCalcNET_Serializable_Remarks(GeoCalcNET.Serializable s)
{
String remarks = s.Remarks;
s.Remarks = "put some remarks here";
}