一
使用System
bool exist = System
如果需要判斷目錄(文件夾)是否存在
bool exist = System
二
在C#編程中
(
(
(
(
例子
public delegate void MyEventHandler(object sender
public class DataImports
{
// 定義新事件NewLineRead
public event MyEventHandler NewLineRead ;
public void ImportData()
{
long i =
while()
{
i++ ;
// 觸發事件
if( NewLineRead != null ) NewLineRead(this
//
}
//
}
//
}
// 以下為Client代碼
private void CallMethod()
{
// 聲明Class變量
private DataImports _da = null;
// 指定事件處理程序
_da
// 調用Class方法
_da
}
// 事件處理程序
private void DA_EnterNewLine(object sender
{
//
}
三
使用System
private string GetHostNameByIP(string ipAddress)
{
IPHostEntry hostInfo = Dns
return hostInfo
}
private string GetIPByHostName(string hostName)
{
System
return hostInfo
}
From:http://tw.wingwit.com/Article/program/net/201311/14671.html