首页 > 开发 > 综合 > 正文

七个C#编程的小技巧

2024-07-21 02:28:39
字体:
来源:转载
供稿:网友

一、最小化窗口

点击“x”或“alt+f4”时,最小化窗口,
如:
protected override void wndproc(ref message m)
{
const int wm_syscommand = 0x0112;
const int sc_close = 0xf060;
if (m.msg == wm_syscommand && (int) m.wparam == sc_close)
{
// user clicked close button
this.windowstate = formwindowstate.minimized;
return;
}
base.wndproc(ref m);
}

二、如何让foreach 循环运行的更快
foreach是一个对集合中的元素进行简单的枚举及处理的现成语句,用法如下例所示:
using system;
using system.collections;
namespace looptest
{
class class1
{
static void main(string[] args)
{
// create an arraylist of strings
arraylist array = new arraylist();
array.add("marty");
array.add("bill");
array.add("george");
// print the value of every item
foreach (string item in array)
{
console.writeline(item);
}
}
}
你可以将foreach语句用在每个实现了ienumerable接口的集合里。如果想了解更多foreach的用法,你可以查看.net framework sdk文档中的c# language specification。

在编译的时候,c#编辑器会对每一个foreach 区域进行转换。ienumerator enumerator = array.getenumerator();
try
{
string item;
while (enumerator.movenext())
{
item = (string) enumerator.current;
console.writeline(item);
}
}
finally
{
idisposable d = enumerator as idisposable;
if (d != null) d.dispose();
}
这说明在后台,foreach的管理会给你的程序带来一些增加系统开销的额外代码。

三、将图片保存到一个xml文件
winform的资源文件中,将picturebox的image属性等非文字内容都转变成文本保存,这是通过序列化(serialization)实现的,
例子://
using system.runtime.serialization.formatters.soap;
stream stream = new filestream("e://image.xml",filemode.create,fileaccess.write,fileshare.none);
soapformatter f = new soapformatter();
image img = image.fromfile("e://image.bmp");
f.serialize(stream,img);
stream.close();

四、屏蔽ctrl-v
在winform中的textbox控件没有办法屏蔽ctrl-v的剪贴板粘贴动作,如果需要一个输入框,但是不希望用户粘贴剪贴板的内容,可以改用richtextbox控件,并且在keydown中屏蔽掉ctrl-v键,例子:

private void richtextbox1_keydown(object sender, system.windows.forms.keyeventargs e)
{
if(e.control && e.keycode==keys.v)
e.handled = true;
}

五、判断文件或文件夹是否存在
使用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();
}

商业源码热门下载www.html.org.cn

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