中英文術語對照 | |
---|---|
程式 | program |
名稱空間 | namespace |
類別 | class |
結構 | structure |
介面 | interface |
委派 | delegate |
列舉 | Enumeration |
方法 | method |
程式庫 | library |
// A skeleton of a C# program using System; namespace YourNamespace { class YourClass { } struct YourStruct { } interface IYourInterface { } delegate int YourDelegate(); enum YourEnum { } namespace YourNestedNamespace { struct YourStruct { } } class YourMainClass { static void Main(string[] args) { //Your program starts here... } } }
ref link: https://msdn.microsoft.com/zh-tw/library/w2a9a9s3.aspx
沒有留言:
張貼留言