addressbookrecord.cs

来自「功能比较强大的短信收发系统功能比较强大。」· CS 代码 · 共 43 行

CS
43
字号
using System;
using System.Collections;
using System.Text;
using System.IO;
namespace ShInfo
{
	/// <summary>
	/// AddressBookRecord 的摘要说明。
	/// </summary>
	public class AddressBookRecord
	{
		private string aname;
		private string anum;
		public string Aname
		{
			get
			{
				return aname;
			}
			set
			{
				aname=value;
			}
		}
		public string Anum
		{
			get
			{
				return anum;
			}
			set
			{
				anum=value;
			}
		}
		public AddressBookRecord(string aname,string anum)
		{
			this.aname=aname;
			this.anum=anum;
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?