Gets or sets the beneficiary's last name. The LastName property gets or sets the beneficiary's last name.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Overridable Property LastName As String
             
        
            
            'Usage
 
Dim instance As Beneficiary
Dim value As String
 
instance.LastName = value
 
value = instance.LastName
             
        
            
            public virtual string LastName {get; set;}
             
        
            
            public read-write property LastName: String; virtual; 
             
        
            
            public function get,set LastName : String
             
        
            
            public: __property virtual string* get_LastName();
public: __property virtual void set_LastName( 
   string* value
);
             
        
            
            public:
virtual property String^ LastName {
   String^ get();
   void set (    String^ value);
}
             
        
             
        
            
            
            Property Value
The beneficiary's last name.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also