objquestion.cs

来自「这是一个在线考试系统」· CS 代码 · 共 51 行

CS
51
字号
using System;

namespace OnlineExamine
{
	/// <summary>
	/// ObjQuestion 的摘要说明。
	/// </summary>
	public class ObjQuestion:Question
	{
		public ObjQuestion()
		{
		}

		int objQId;
		public int ObjQId
		{
			get{return objQId;}
			set{objQId=value;}
		}

		int type;
		public int Type
		{
			get{return type;}
			set{type=value;}
		}

		string info;
		public string Info
		{
			get{return info;}
			set{info=value;}
		}

		ObjItem[] objItems;
		public ObjItem[] ObjItems
		{
			get{return objItems;}
			set{objItems=value;}
		}

		ObjAnswer objAnswer;
		public ObjAnswer ObjAnswer
		{
			get{return objAnswer;}
			set{objAnswer=value;}
		}

	}
}

⌨️ 快捷键说明

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