这基本上是我第一次尝试理解 C# 中的类。我已经浏览了互联网上的几个教程,但是我最想念的东西和我还没有在任何地方找到的东西是一个简单的好例子。
我知道我的基本程序应该是什么样子,我会很感激你的帮助:
using System;
namespace Introduction_to_classes
{
class Person
{
int Age;
string Name;
int DateOfBirth()
{
return 2013 - Age;
}
}
class Program
{
public static void Main()
{
Person Mother = new Person(35, Alice);
Person Son = new Person(12, Johny);
Mother.Name = "Lucy"; // Just changing the value afterwards
if(Mother.Age > Son.Age)
{
int year = Mother.DateOfBirth();
Console.WriteLine("Mom was born in {0}.", year);
}
Console.ReadLine();
}
}
}
这只是一个想法,它绝对行不通。但最重要的是,如果您可以将其纠正为工作示例,它将对我有所帮助......