用c#读文件
using System;
using System.IO; using System.Collections; class Anagrams { public static void Main(String[] args) { StreamReader din = File.OpenText ("words.txt"); String str; StringTable st = new StringTable(); Console.WriteLine("Reading data and insterting into a StringTable."); while ((str=din.ReadLine()) != null) { st.Add(str); } Console.WriteLine("Printing out the StringTable."); foreach (string s in st) { Console.WriteLine (s); } Console.WriteLine ("\r\nPress Return to exit."); Console.Read(); } } 上一篇:datalist分页(codebehind部分) 下一篇:<<展现C#>> 第八章 用C#写组件(rainbow 翻译) (来自重粒子空间) 更多相关文章
|
推荐文章
精彩文章
|