Gets the patient's sex.
public string Sex {get; set;}
'Declaration
Public Property Sex As String
'Usage
Dim instance As Patient
Dim value As String
instance.Sex = value
value = instance.Sex
public:
property String^ Sex {
String^ get();
void set ( String^ value);
}
Property Value
Sex of the named patient. Enumerated Values are: M = male F = female O = other.