⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 address.cs

📁 《ASP.NET 2.0 XML 高级编程(第3版)》 《ASP.NET 2.0 XML 高级编程(第3版)》
💻 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 + -