一
點擊
如
protected override void WndProc(ref Message m)
{
const int WM_SYSCOMMAND =
const int SC_CLOSE =
if (m
{
// User clicked close button
this
return;
}
base
}
二
foreach是一個對集合中的元素進行簡單的枚舉及處理的現成語句
using System;
using System
namespace LoopTest
{
class Class
{
static void Main(string[] args)
{
// create an ArrayList of strings
ArrayList array = new ArrayList();
array
array
array
// print the value of every item
foreach (string item in array)
{
Console
}
}
}
}
你可以將foreach語句用在每個實現了Ienumerable接口的集合裡
在編譯的時候
try
{
string item;
while (enumerator
{
item = (string) enumerator
Console
}
}
finally
{
IDisposable d = enumerator as IDisposable;
if (d != null) d
}
這說明在後台
三
WinForm的資源文件中
例子
using System
Stream stream = new FileStream(
SoapFormatter f = new SoapFormatter();
Image img = Image
f
stream
四
在WinForm中的TextBox控件沒有辦法屏蔽CTRL
private void richTextBox
{
if(e
e
}
From:http://tw.wingwit.com/Article/program/net/201311/14675.html