using System;
using System.Collections.Generic;
namespace 脚本生成程序
{
public class DataCell
{
private Dictionary<int, string> keyInfoDict;
public DataCell ()
{
keyInfoDict = new Dictionary<int, string>() ;
}
public DataCell(params string[] keyInfo)
{
keyInfoDict = new Dictionary<int, string>();
for (int i = 0; i != keyInfo.Length; ++i)
{
keyInfoDict[i] = keyInfo[i];
}
}
public string GetKeyInfo(int index)
{
return keyInfoDict[index];
}
public void SetKeyInfo(int index, string keyInfo)
{
keyInfoDict[index] = keyInfo;
}
}
}脚本生成程序Part1
最新推荐文章于 2025-05-23 20:07:28 发布
2373

被折叠的 条评论
为什么被折叠?



