judgeproblem.cs
来自「在线考试系统完整版源码(C#&Access) 该考试系统为一同学毕业设计」· CS 代码 · 共 43 行
CS
43 行
using System;
using System.Collections.Generic;
using System.Text;
namespace ExamModel.Auto_Generated_Code
{
public class JudgeProblem
{
/// <summary>
/// 判断题
/// </summary>
private int judgeProblemID;
private Course jcourse;
private string Title = String.Empty;
private bool Answer;
//判断题ID
public int JudgeProblemID
{
get { return this.judgeProblemID; }
set { this.judgeProblemID = value; }
}
//判断题课程
public Course JCourse
{
get { return this.jcourse; }
set { this.jcourse = value; }
}
//判断题题目
public string JTitle
{
get { return this.Title; }
set { this.Title = value; }
}
//判断题答案
public bool JAnswer
{
get { return this.Answer; }
set { this.Answer = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?