c#strut的使用
时间: 2024-06-14 18:03:22 浏览: 80
以下是使用C#中struct的方法和步骤:
1.在main方法之外编写struct,定义变量和属性:
```csharp
public struct Person
{
public string name;
public int age;
}
```
2.在main方法中实例化对象并调用struct中所定义的变量并进行赋值:
```csharp
Person person = new Person();
person.name = "李";
person.age = 18;
Console.WriteLine(person.name);
Console.WriteLine(person.age);
```
输出结果为:
```
李
18
```
阅读全文