摘要:
using System; using System.Collections.Generic; namespace Test { class Program { static void Main(string[] args) { var list = new List { 1, 2, 3, 4, 5, 6, 7, 8, 9... 阅读全文
摘要:
using System; namespace Test { delegate void InformDelegate(string from); class Program { static void Main(string[] args) { new Regist().Invoke1(); ... 阅读全文
摘要:
using System; namespace TEST { class Program { static void Main(string[] args) { var structA = new StructA { X = 1 }; ChangeStructA(structA);// struct 阅读全文
摘要:
using System.IO; using System.Runtime.Serialization; using System.ServiceModel; using System.Xml.Serialization; namespace WcfService { [ServiceContract] public interface IBookService { ... 阅读全文