DictionaryForumContacts

   English
Terms for subject Microsoft containing Type | all forms | exact matches only
EnglishChinese
allotment type分配類型 (A unit of service, such as a case or a range of coverage dates, specified in a service contract that indicates how much access a customer has to customer service)
Campaign Type廣告活動類型 (The field in a Campaign form in which you can select the type of campaign that is being run. Possible types are Advertisement, Direct Marketing, Event, and Other)
Case Type案例類型 (A sub-category of customer service issues that indicates whether an issue is a question, problem, or request)
closed generic type封閉式泛型型別 (A constructed generic type that has no unspecified generic type parameters, either of its own or of any enclosing types or methods. Closed generic types can be instantiated)
common type system一般型別系統 (The specification that determines how the common language runtime defines, uses, and manages types)
constructed generic type建構的泛型型別 (A generic type whose generic type parameters have been specified. A constructed type or method can be an open generic type if some of its type arguments are type parameters of enclosing types or methods, or a closed generic type if all of its type arguments are real types)
document type文件類型 (A designation that identifies a document's purpose)
generic type argument泛型型別引數 (The type that the user specifies when creating instances of a generic type or when calling a generic method)
generic type definition泛型型別定義 (The definition of a generic type, in which type parameters act as placeholders for types that the user supplies when creating instances to use. These instances are not instances of the generic type definition, but of the constructed type formed by specifying type arguments)
generic type parameter泛型型別參數 (In a generic type definition, a placeholder for a type that the user specifies (generic type argument) when creating instances of a generic type or when calling a generic method)
generic type parameter constraint泛型型別參數條件約束 (A way of limiting the types that can be specified for a generic type parameter. For example, types substituted for the type parameter can be constrained to inherit from a particular type, to implement a specific interface, to provide a parameterless constructor, and so on)
generic type parameter list泛型型別參數清單 (The list of generic type parameters of a generic type or method, specified as part of the definition of the generic type or generic method)
nested type巢狀型別 (A type defined within the scope of another type. A nested type is typically used for encapsulating implementation details of the top-level type)
open generic type開放式泛型型別 (A constructed generic type in which one or more of the generic type arguments substituted for its generic type parameters is a type parameter of an enclosing generic type or method. Open generic types cannot be instantiated)
parameterized type參數化型別 (A type whose definition has placeholders for actual types that the user specifies when creating and using instances of the type. C++ templates and common language runtime generics are examples of parameterized types)
record type記錄類型 (The representation of all the instances of a particular record. When changes are made to a record type, those changes will affect all individual records of that type)
reference type參考型別 (" A data type that is represented by a reference (similar to a pointer) to the type's actual value. If a reference type is assigned to a variable, that variable references (or "points to") the original value. No copy is made. Reference types comprise classes, interfaces, delegates, and boxed value types. ")
Relationship Type關聯類型 (A field in the contact form that specifies the relationship of the account to the organization that uses Microsoft CRM)
value type實值型別 (A data type that is represented by the type's actual value. If a value type is assigned to a variable, that variable is given a fresh copy of the value. (This is in contrast to a reference type, where assignment does not create a copy) Value types are usually created on a method's stack frame, rather than in the garbage-collected heap. A value type can be boxed, which is a process that creates a corresponding reference type)