摘要:
【C# Equals】1、Object.Equals() The type of comparison between the current instance and theobjparameter depends on whether the current instance is a ref... 阅读全文
摘要:
【C# ValueTypes】1、哪些类型是ValueType?The value types consist of two main categories:StructsEnumerationsStructs fall into these categories:Numeric typesInte... 阅读全文
摘要:
【boxing & unboxing】 Boxing is the process of converting avalue typeto the typeobjector to any interface type implemented by this value type.When the ... 阅读全文
摘要:
【params】 By using theparamskeyword, you can specify amethod parameterthat takes a variable number of arguments. param是c#中的变长参数。 You can send a comm... 阅读全文