在C#中下面的一段代码每一行各是什么意思,有什么作用?麻烦讲一下,谢谢

publicclassFileManipulate{//publicstringFileStrings{get;set;}publicfloatStartX{get;se... public class FileManipulate
{
//public string FileStrings { get; set; }
public float StartX { get; set; }
public float StartY { get; set; }
public float Step { get; set; }
public int SumRow { get; set; }
public int SumColumn { get; set; }
public float[,] XyMatrix { get; set; }
public bool Ready { get; set; }

public void ReadFile()
{
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "文本文件(*.txt)|*.txt|(*.rtf)|*.rtf";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
StreamReader myReader = new StreamReader(openFileDialog1.FileName, Encoding.Default);
StartX = Convert.ToSingle(myReader.ReadLine().Split(':')[1].Trim());
StartY = Convert.ToSingle(myReader.ReadLine().Split(':')[1].Trim());
Step = Convert.ToSingle(myReader.ReadLine().Split(':')[1].Trim());
SumRow = Convert.ToInt32(myReader.ReadLine().Split(':')[1].Trim());
SumColumn = Convert.ToInt32(myReader.ReadLine().Split(':')[1].Trim());
XyMatrix = new float[SumRow, SumColumn];
string[] exchangeString;
for (int j = 0; j < SumRow; j++)
{
exchangeString = myReader.ReadLine().Split(',');
for (int i = 0; i < SumColumn; i++)
{
XyMatrix[j, i] = Convert.ToSingle(exchangeString[i].Trim());
}
}
myReader.Close();

}

}
展开
 我来答
sxqq哥qq
2014-11-05
知道答主
回答量:12
采纳率:0%
帮助的人:7.3万
展开全部
我擦,我写了一些发现你问这个问题好像意味着你完全不懂编程?那我还是不要尝试解释了,这个类就是用来读取文本和rtf文件里面数据,然后档乎按拍蠢如一定格式保存在一个数组袭启里面了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式