Skip to content

Instantly share code, notes, and snippets.

@aligoren
Last active August 29, 2015 14:02
Show Gist options
  • Save aligoren/b4defc384218d6556757 to your computer and use it in GitHub Desktop.
Save aligoren/b4defc384218d6556757 to your computer and use it in GitHub Desktop.
public class Kisiler
{
private string _isim;
public string Isim
{
get
{
return _isim;
}
set
{
_isim = value;
}
}
public int Yas{get;set;} // Burasi ise dedigimiz property
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment