truequestion.cs
来自「这是一个在线考试系统」· CS 代码 · 共 29 行
CS
29 行
using System;
namespace OnlineExamine
{
/// <summary>
/// TrueQuestion 的摘要说明。
/// </summary>
public class TrueQuestion
{
public TrueQuestion()
{
}
int trueQId;
public int TrueQId
{
get{return trueQId;}
set{trueQId=value;}
}
string info;
public string Info
{
get{return info;}
set{info=value;}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?