摘要:
除了字符串、数字、true、false、null、undefined外,javascript中的值都是对象。 1.创建对象 var a = {}; //空的 var b = {x:11,y:"我是Y"}; //有值的 var obj = {x:b.x,b:b.y + 2} //引用其它对象的值 va 阅读全文
摘要:
View Code 1 using System; 2 using System.Net; 3 using System.Net.Sockets; 4 using System.ServiceProcess; 5 using System.Threading; 6 7 namespace TestUdpServer 8 { 9 // this class encapsulates a single packet that 10 // is either sent or received by a UDP socket 11 public clas... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Net.Sockets; 5 using System.Net; 6 using System.Threading; 7 using System.Runtime.InteropServices; 8 9 namespace ConsoleApplication2 10 { 11 class Program 12 { 13 static Socket m_sListen; 14 15 static... 阅读全文