2009年1月14日 星期三

C# 類別的優點(很像 巨集)

//類別的建構
class file
{
//類別的屬性
string filename="";

//建構子
public file( )
{
filename="c:\\1.txt";
}

public file(string fn)
{
filename=fn;
}

//方法的使用
public string open( )
{
string aa;
System.IO.StreamReader fn = new System.IO.StreamReader(filename, Encoding.Default);
while (fn.EndOfStream == false)
{
Application.DoEvents(); //這一行是強制 逐步執行
aa = aa + fn.ReadLine();
}
return aa;
}

public string write()
{

}


}


file xx= new file("c:\66.txt" );
msgbox( xx.open());

沒有留言:

張貼留言