📄 address.cs
字号:
using System;
public class Address
{
public string Street;
public string City;
public int ZIP;
public string Country;
// Default constructor needed by XmlSerializer
public Address()
{
}
public Address(string _Street, string _City, int _ZIP, string _Country)
{
this.Street = _Street;
this.City = _City;
this.ZIP = _ZIP;
this.Country = _Country;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -