好的。我试图掌握构造函数。我想把这个员工命名为 Stormtrooper。但它似乎没有调用它。我不知道我是否没有正确阅读构造函数或什么,但这就是我所拥有的
任何帮助,将不胜感激。我意识到这是一个非常菜鸟的问题。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication297
{
public class Program
{
static void Main(string[] args)
{
Employee s = new Employee(name);
Console.WriteLine(s.Name);
Console.ReadKey();
}
public class Employee
{
private string name;
public string Name
{
get
{
return name;
}
}
public Employee(string name)
{
name = Stormtrooper;
}
}
}
}