Public Set C# with Example



Public Set C# with Example

Setters are used to assign values to properties. 
string name; 
public string Name 
{ 
set { this.name = value; } 
} 

0 Comment's

Comment Form

Submit Comment