摘要: private void getridofspace() { string new_text = null; OpenFileDialog of = new OpenFileDialog(); of.Filter = "txt文件|*.txt|所有文件|*.*"; of.AddExtension = true; of.Title = "打开文件"; if (of.ShowDialog() == D... 阅读全文
posted @ 2009-05-12 14:45 emery 阅读(432) 评论(0) 推荐(0) 编辑
摘要: public string ConvertString(string value, int fromBase, int toBase){int intValue = Convert.ToInt32(value, fromBase); return Convert.ToString(intValue, toBase);} 阅读全文
posted @ 2009-05-12 12:55 emery 阅读(152) 评论(0) 推荐(0) 编辑