摘要:http.cs ---------------------------- using system;using system.collections;using system.io;using system.net;using system.net.sockets;using system.threading;
class httpprocessor {
private socket s; ......
摘要:c# 中的while与 vb 中的while语句完全相同。当条件为真时,循环就执行。在一个while 循环内部可以使用 break 语句跳出循环体或者使用continue 语句继续循环操作。请看下面while语句的应用代码:
while (n < 10)
{
console.writeline(n);
n++;
}
do
c# 中的d......
可怕的C#可怕的 c# 【程序编程相关:
画动态多边型】 【推荐阅读:
用Delphi编写系统进程监控程序】 【扩展信息:
判断文件是否正在使用】
摘要: public sealed class x
{
}
internal
如果将internal 修饰符放在一个类或成员上,那么这个类或成员就只能被同一个汇编中的其它类使用。这与 vb 中的 friend 修饰符相同。
protected
protected修饰符用于准许对从这个类中派生出来的类进行访问。
internal protecte......