今天休假,突然间不知道能做什么,其实只是为了休而休。
如果妳刚好也休假或没事,也刚好想看个电影,
不介意有个人陪伴或认识新朋友的话,或许可以一起。
enum Gender {Female, Male, Other};
class I
{
public readonly Gender MyGender;
public readonly bool IsHandsome = false;
public readonly double Height = 171.4;
public readonly double Weight = 64.3;
public I()
{
MyGender = Male;
}
public int GetAge()
{
bool LookYoungerThanRealAge = true;
return DateTime.Today.Year - DateTime.FromOADate(28295).Year;
}
public string GetLineId()
{
return MyPTTId;
}
public bool ShallWeMeet()
{
return ((You.Nice) && (You.Talkative) && (You.Age < GetAge() - 7) &&
(You.Height - You.Weight > 100));
}
}