结构体

1、

struct route
{
public orientation direction;
public double distance;
}

 2、带函数的结构体

struct CustomerName
{
  public string firstName,lastName;
  public string Name()
  {
      return firstName+" "+lastName;
  }
}

注意:声明在主体代码的外面

posted @ 2018-05-15 18:35  朱小勇  阅读(112)  评论(0编辑  收藏  举报