这里,我们正在读取两个不同的文件: 读取文本文件: 示例 实时演示 using System; using System.IO; namespace FileApplication { class Program { static void Main(string[] args) { try { using (StreamReader sr = new StreamReader("d:/new.txt")) { string line; // 读取并显示文件中的行,直到 // 达到文件末尾。 while ((line ... 阅读更多
要打开纯文本文件,请使用 StreamReader 类。以下代码打开一个文件以进行读取: StreamReader sr = new StreamReader("d:/new.txt") 现在,显示文件的内容: while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } 以下是代码: 示例 实时演示 using System; using System.IO; namespace FileApplication { class Program { static void Main(string[] args) { try { using (StreamReader sr = new StreamReader("d:/new.txt")) { string line; // ... 阅读更多
嵌套类是在另一个封闭类中声明的类,它具有内部类和外部类。它是其封闭类的成员,封闭类的成员无法访问嵌套类的成员让我们看看 C# 中嵌套类的示例代码片段。 这里,类 Two 是一个局部内部类: 示例 class One { public int num1; public class Two { public int num2; } } class Demo { static void Main() { One x = new One(); ... 阅读更多