Skip to content

Instantly share code, notes, and snippets.

@tomwis
Created August 18, 2017 19:49
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 tomwis/81aa45adb54d01c6ad5a4ed27e55086d to your computer and use it in GitHub Desktop.
Save tomwis/81aa45adb54d01c6ad5a4ed27e55086d to your computer and use it in GitHub Desktop.
public Button(string text) => _text = text;
~Button() => Debug.WriteLine("Goodbye!");
string _text;
public string Text
{
get => _text;
set => _text = value ?? "No name";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment