主题:C#问题=
using System;
using System.IO;
class t
{
public static void Main()
{
FileStream he;
try{
he=new FileStream("helun.txt",FileMode.Open);
}
catch
{Console.WriteLine("cannont open the file ");}
byte []buf=new byte [100];
he.Read(buf,0,10);
int i;
for(i=0;i<30;i++)
Console.Write(buf[i]);
}
}
请问一下,为什么编绎通不过呢?提示是使用了局部变量'he'。请高手指教
using System.IO;
class t
{
public static void Main()
{
FileStream he;
try{
he=new FileStream("helun.txt",FileMode.Open);
}
catch
{Console.WriteLine("cannont open the file ");}
byte []buf=new byte [100];
he.Read(buf,0,10);
int i;
for(i=0;i<30;i++)
Console.Write(buf[i]);
}
}
请问一下,为什么编绎通不过呢?提示是使用了局部变量'he'。请高手指教