fruit.cs

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

CS
23
字号
using System;

namespace NHibernate.Test.NHSpecificTest.NH440
{
	public class Fruit
	{
		private int id;

		public int Id
		{
			get { return id; }
			set { id = value; }
		}

		private Apple theApple;

		public Apple TheApple
		{
			get { return theApple; }
			set { theApple = value; }
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?