C# -- LinkedList的使用
2021-06-03 16:03
标签:show rem ring 移除 src 图片 set div eve C# -- LinkedList的使用 C# -- LinkedList的使用 标签:show rem ring 移除 src 图片 set div eve 原文地址:https://www.cnblogs.com/ChengWenHao/p/CSharpLinkedList.html private static void TestLinkList()
{
LinkedList
class Person
{
public Person()
{
}
public Person(string name, int age, string sex)
{
this.Name = name;
this.Age = age;
this.Sex = sex;
}
public string Name { get; set; }
public int Age { get; set; }
public string Sex { get; set; }
public void SayHi()
{
Console.WriteLine("我是{0},性别{1},今年{2}岁了!", this.Name, this.Sex, this.Age);
}
}