toexcelinfor.cs
来自「本软件是为南开大学体育部开发的,作为跆拳道比赛分组,分级别的小工具.在程序中导入」· CS 代码 · 共 24 行
CS
24 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Match
{
class ToExcelInfor
{
public ToExcelInfor() { }
public ToExcelInfor(string group, string level, string red, string green)
{
Group = group;
Level=level;
Red=red;
Green=green;
}
public string Group;
public string Level;
public string Sequence;
public string Red;
public string Green;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?