首页 > 开发 > 综合 > 正文

几个C#编程的小技巧 (二)

2024-07-21 02:18:40
字体:
来源:转载
供稿:网友
一、判断文件或文件夹是否存在
使用system.io.file,要检查一个文件是否存在非常简单:
bool exist = system.io.file.exists(filename);

如果需要判断目录(文件夹)是否存在,可以使用system.io.directory:
bool exist = system.io.directory.exists(foldername);

二、使用delegate类型设计自定义事件
在c#编程中,除了method和property,任何class都可以有自己的事件(event)。定义和使用自定义事件的步骤如下:
(1)在class之外定义一个delegate类型,用于确定事件程序的接口
(2)在class内部,声明一个public event变量,类型为上一步骤定义的delegate类型
(3)在某个method或者property内部某处,触发事件
(4)client程序中使用+=操作符指定事件处理程序


例子: // 定义delegate类型,约束事件程序的参数
public delegate void myeventhandler(object sender, long linenumber) ;

public class dataimports
{
// 定义新事件newlineread
public event myeventhandler newlineread ;

public void importdata()
{
long i = 0 ; // 事件参数
while()
{
i++ ;
// 触发事件
if( newlineread != null ) newlineread(this, i);
//...
}
//...
}
//...
}

// 以下为client代码

private void callmethod()
{
// 声明class变量,不需要withevents
private dataimports _da = null;
// 指定事件处理程序
_da.newlineread += new myeventhandler(this.da_enternewline) ;
// 调用class方法,途中会触发事件
_da.importdata();
}
// 事件处理程序
private void da_enternewline(object sender, long linenumber)
{
// ...
}


三、ip与主机名解析
使用system.net可以实现与ping命令行类似的ip解析功能,例如将主机名解析为ip或者反过来: private string gethostnamebyip(string ipaddress)
{
iphostentry hostinfo = dns.gethostbyaddress(ipaddress);
return hostinfo.hostname;
}
private string getipbyhostname(string hostname)
{
system.net.iphostentry hostinfo = dns.gethostbyname(hostname);
return hostinfo.addresslist[0].tostring();
}





发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表