clsmethed.cs
来自「房屋中介系统是一款非常实用的房屋中介软件。使用该软件」· CS 代码 · 共 33 行
CS
33 行
using System;
using System.Collections.Generic;
using System.Text;
namespace houseAgency.mothedCls
{
class clsMethed
{
private string house_mothedID=null;
private string mothed_name=null;
private string mothed_remark = null;
public string id
{
get { return house_mothedID; }
set { house_mothedID = value; }
}
public string name
{
get { return mothed_name; }
set { mothed_name = value; }
}
public string remark
{
get { return mothed_remark; }
set { mothed_remark = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?