Skip to content

Instantly share code, notes, and snippets.

@suchja
Last active October 24, 2016 12:29
Show Gist options
  • Save suchja/cb8e37b4d4bac95c4f62d50863d8f143 to your computer and use it in GitHub Desktop.
Save suchja/cb8e37b4d4bac95c4f62d50863d8f143 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace test
{
class mensch
{
int größe, alter, gewicht;
string name, nachname;
public int Alter
{
get
{
return alter;
}
set
{
if (value < 0)
{
value = 1;
}
alter = value;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment