📄 menu.cs
字号:
using System;
using System.Collections;
namespace NHibernate.Test.NHSpecificTest.NH309
{
/// <summary>
/// Summary description for Menu.
/// </summary>
public class Menu
{
private int _id;
private string _name;
private IList _nodes;
public int Id
{
get { return this._id; }
set { this._id = value; }
}
public string Name
{
get { return this._name; }
set { this._name = value; }
}
public IList Nodes
{
get
{
if (this._nodes == null)
{
this._nodes = new ArrayList();
}
return this._nodes;
}
set { this._nodes = value; }
}
public Menu()
{
this._id = -1;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -