address.cs

来自「《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.」· CS 代码 · 共 23 行

CS
23
字号
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 + =
减小字号Ctrl + -
显示快捷键?