摘要:
XML处理 1.How to create xml ? XDocument customer = new XDocument( new XDeclaration("1.0", "UTF-16", "yes"), new XElement("customer", new XAttribute("id" 阅读全文
摘要:
WebRequest如何发送http请求? 引用 using System.Net; using System.IO; Base on Webreqution public static string WebRequestByPost(string url, string contentType, 阅读全文
摘要:
一些基础内容 冒泡从小到大排序 //冒泡void sort(int a[], int n) { int i, j , t; for (i = 0; i < n - 1; i++) for (j=0;j<n-i-1;j++) if (a[j] > a[j + 1]) { t = a[j]; a[j] 阅读全文