1.用Pascal規則來命名方法和類型。 public class DataGrid { public void DataBind() { } } 2.用Camel規則來命名局部變數和方法的參數. public class Product { private string _productId; private string _productName; public void AddProduct(string productId,string productName) { } }
我貼c#的代碼: 複製代碼 代碼如下:namespace IWebs.Webs{ using System; using System.Web.Services; using System.Web.Services.Protocols; using System.Xml; using System.Xml.XPath; using System.Web.Script.Services; using IWebs; [WebService
複製代碼 代碼如下:# using System; # using System.Collections; # using System.Text; # # /// <summary> # /// Class for encoding and decoding a string to QuotedPrintable # /// RFC 1521 http://www.ietf.org/rfc/rfc1521.txt # /// RFC 2045
static的全部用法 要理解static,就必須要先理解另一個與之相對的關鍵字,很多人可能都還不知道有這個關鍵字,那就是auto,其實我們通常聲明的不用static修飾的變數,都是auto的,因為它是預設的,就象short和long總是預設為int一樣;我們通常聲明一個變數: int a; string s; 其實就是: auto int a; auto string s; 而static變數的聲明是: static int a;
<script> a=62; function encode() { var code = document.getElementById('code').value; code = code.replace(/[\r\n]+/g, ''); code = code.replace(/'/g, "\\'"); var tmp = code.match(/\b(\w+)\b/g); tmp.sort(); var dict = []; var i, t = '';
/* FTPFactory.cs Better view with tab space=4 Written by Jaimon Mathew (jaimonmathew@rediffmail.com) Rolander,Dan (Dan.Rolander@marriott.com) has modified the download method to cope with file name with path information. He also provided the
非同步用戶端通訊端樣本 下面的樣本程式建立一個串連到伺服器的用戶端。該用戶端是用非同步通訊端產生的,因此在等待伺服器返迴響應時不掛起用戶端應用程式的執行。該應用程式將字串發送到伺服器,然後在控制台顯示該伺服器返回的字串。 C# using System; using System.Net; using System.Net.Sockets; using System.Threading; using System.Text; // State object for receiving