Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zs40x/e763c9f36796737036dc0bf6289af6ba to your computer and use it in GitHub Desktop.
Save zs40x/e763c9f36796737036dc0bf6289af6ba to your computer and use it in GitHub Desktop.
public class Person
{
// Example 1: manually implemented property
private string _name;
public string Name
{
get
{
return _name;
}
set
{
_name = value;
}
}
// Example 2: auto-implemented property
public string City { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment