choiceinfo.cs
来自「非常不错的学校在线考试分析系统」· CS 代码 · 共 21 行
CS
21 行
using System;
using System.Collections;
using System.Data;
using ASPNET.StarterKit.Communities;
namespace ASPNET.StarterKit.Communities {
/// <summary>
/// Represents data relevant to a VotingPollChoice record.
/// </summary>
public class ChoiceInfo {
public ChoiceInfo(string Choice, int SortOrder, int PollChoice_ID) {
this.Choice=Choice;
this.SortOrder=SortOrder;
this.PollChoice_ID=PollChoice_ID;
}
public string Choice;
public int SortOrder;
public int PollChoice_ID;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?