a.cs

来自「NHibernate NET开发者所需的」· CS 代码 · 共 49 行

CS
49
字号
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 + =
减小字号Ctrl + -
显示快捷键?