Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created June 13, 2017 10:00
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 PradeepLoganathan/076908d8139750bfcc787e393f0ddd8b to your computer and use it in GitHub Desktop.
Save PradeepLoganathan/076908d8139750bfcc787e393f0ddd8b to your computer and use it in GitHub Desktop.
public class User
{
private string userName;
// accessors
public string UserName
{
get => userName;
private set => userName = value;
}
// constructor
public User(string userName) => UserName = userName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment