notnullpropertyholder.cs
来自「NHibernate NET开发者所需的」· CS 代码 · 共 30 行
CS
30 行
using System;
namespace NHibernate.Test.NHSpecificTest.NH318
{
/// <summary>
/// Summary description for NotNullPropertyHolder.
/// </summary>
public class NotNullPropertyHolder
{
private int _id;
private String _notNullProperty;
public NotNullPropertyHolder()
{
_id = 0;
}
public int Id
{
get { return _id; }
set { _id = value; }
}
public String NotNullProperty
{
get { return _notNullProperty; }
set { _notNullProperty = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?