Tekkaman

导航

 

2014年7月18日

摘要: 【C# Equals】1、Object.Equals() The type of comparison between the current instance and theobjparameter depends on whether the current instance is a ref... 阅读全文
posted @ 2014-07-18 19:15 Tekkaman 阅读(315) 评论(0) 推荐(0) 编辑
 
摘要: 【C# ValueTypes】1、哪些类型是ValueType?The value types consist of two main categories:StructsEnumerationsStructs fall into these categories:Numeric typesInte... 阅读全文
posted @ 2014-07-18 14:22 Tekkaman 阅读(442) 评论(0) 推荐(0) 编辑
 
摘要: 【boxing & unboxing】 Boxing is the process of converting avalue typeto the typeobjector to any interface type implemented by this value type.When the ... 阅读全文
posted @ 2014-07-18 12:00 Tekkaman 阅读(320) 评论(0) 推荐(0) 编辑
 
摘要: 【params】 By using theparamskeyword, you can specify amethod parameterthat takes a variable number of arguments. param是c#中的变长参数。 You can send a comm... 阅读全文
posted @ 2014-07-18 11:39 Tekkaman 阅读(984) 评论(0) 推荐(0) 编辑