📄 a.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest.MapGeneric
{
public class A
{
private int? _id;
private string _name;
private IDictionary<string, B> _items;
private IDictionary<string, int> _sortedList;
private IDictionary<string, int> _sortedDictionary;
public A() { }
public int? Id
{
get { return _id; }
set { _id = value; }
}
public string Name
{
get { return _name; }
set { _name = value; }
}
public IDictionary<string,B> Items
{
get { return _items; }
set { _items = value; }
}
public IDictionary<string, int> SortedList
{
get { return _sortedList; }
set { _sortedList = value; }
}
public IDictionary<string, int> SortedDictionary
{
get { return _sortedDictionary; }
set { _sortedDictionary = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -