using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace SilverlightInterview.Web
{
public class Note
{
public Note() { }
public string ID
{
get;
set;
}
public string Topic
{
get;
set;
}
public string Remark
{
get;
set;
}
}
}
本文介绍了一个简单的C# Note类的定义,该类包括ID、主题和备注三个属性,适用于小型应用程序或数据模型的设计。
1644

被折叠的 条评论
为什么被折叠?



