软件大小: | 3356 K | ||
上传用户: | baorong216 | ||
关键词: | NHibernate NET 开发者 | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
using System; using System.Collections.Generic; using System.Text; namespace NHibernate.Test.GenericTest.ListGeneric { public class B { private int? _id; private string _name; public B() { } public int? Id { get { return _id; } set { _id = value; } } public string Name { get { return _name; } set { _name = value; } } } }
相关资源 |
|