单词 | delegate type | ||||||||||||
释义 | delegate type
更多释义 收起释义 例句释义: 委托类型,委派型别,委派类型 1. The return type and parameter types of a delegate type must be at least as accessible as the delegate type itself. 委托类型的返回类型和参数类型必须至少与委托类型本身具有同样的可访问性。 msdn2.microsoft.com 2. A delegate type whose signature matches that of the dynamic method, minus the first parameter. 一个签名与动态方法的签名匹配的委托类型,不包括第一个参数。 msdn2.microsoft.com 3. Generic delegates also can be used in dynamically generated code without requiring the generation of a delegate type . 泛型委托还可以用于动态生成的代码而不需要生成委托类型。 www.bing.com 4. Once a delegate type has been declared, a delegate object must be created and associated with a particular method. 声明了委托类型后,必须创建委托对象并使之与特定方法关联。 msdn2.microsoft.com 5. In this example, the value of r is 20, just like the previous example where we assigned the lambda directly to a delegate type. 在这个示例中,变量r的值是20,和我们之前举的将lambda表达式直接赋给一个委托类型得到的结果一样。 blog.joycode.com 6. After a delegate type has been declared, a delegate object must be created and associated with a particular method. 在已宣告委派型别后,就必须建立委派物件,并使其与特定的方法产生关联。 technet.microsoft.com 7. Whenever a new set of argument types or return value type is needed, a new delegate type must be declared. 每当需要一组新的参数类型或新的返回值类型时,都必须声明一个新的委托类型。 msdn2.microsoft.com 8. You can use the delegate type to declare a variable that can refer to any method with the same signature as the delegate. 可以使用委托类型来声明一个变量,该变量可以引用与委托签名相同的所有方法。 msdn2.microsoft.com 9. A delegate type represents references to methods with a particular parameter list and return type. 委托类型表示方法引用,这些方法可以带有特定参数表和返回类型。 prowyh.wordpress.com 10. The declaration of a delegate type is similar to a method signature. 委派型别的宣告与方法签章类似。 technet.microsoft.com 1. The Delegate class is not considered a delegate type; it is a class used to derive delegate types. Delegate类不是委托类型,该类用于派生委托类型。 msdn2.microsoft.com 2. The delegate type used is called ProcessBookDelegate. 所使用的delegate类型称为ProcessBookDelegate。 msdn2.microsoft.com 3. Keyword, and providing a delegate type and a name for the event. 关键字,并提供委托类型和事件名称。 msdn2.microsoft.com 4. The delegate type for a given event is defined by the event source. 给定事件的委托类型由事件源定义。 msdn2.microsoft.com 5. A delegate type can represent any method with a compatible signature. 委托类型可以表示任何具有兼容签名的方法。 msdn2.microsoft.com 6. The exception that is thrown when there is an attempt to combine two instances of a non-combinable delegate type. 当尝试组合两个无法组合的委托类型时引发的异常。 msdn2.microsoft.com 7. Name of the delegate type; follows standard variable naming conventions. 委托类型的名称;符合标准变量命名规则。 msdn2.microsoft.com 8. Not all the non-null entries in delegates are instances of the same delegate type. 中的所有非空项都是同一委托类型的实例。 msdn2.microsoft.com 9. The declaration of a delegate type establishes a contract that specifies the signature of one or more methods. 委托类型的声明建立了一个协定,该协定指定一个或多个方法的签名。 msdn2.microsoft.com 10. These methods are generated automatically for each delegate type. 为每个委托类型自动生成了这些方法。 msdn2.microsoft.com 1. Each delegate type describes the number and types of the arguments, and the type of the return value of methods that it can encapsulate. 每一个委派型别说明了引数的数目和引数的型别,和它可以封装之方法的传回值型别。 technet.microsoft.com 2. Gets or sets the data type of the delegate type that handles the event. 获取或设置处理事件的委托类型的数据类型。 msdn2.microsoft.com 3. For the event data type, and the corresponding event delegate type. 派生的类以及相应的事件委托类型。 msdn2.microsoft.com 4. The import process creates a delegate type for each event in the event interface. 导入进程为事件接口中的每一事件创建一个委托类型。 msdn2.microsoft.com 5. A delegate instance that can be cast to the appropriate delegate type. 委托实例,可强制转换为适当的委托类型。 msdn2.microsoft.com 6. The delegate type for the event handlers of the. 事件的事件处理程序的委托类型。 msdn2.microsoft.com 7. Set the type of the event member to the event delegate type. 将事件成员的类型设置为事件委托类型。 msdn2.microsoft.com 8. Are not instances of the same delegate type. 不是同一委托类型的实例。 msdn2.microsoft.com 9. The Click event uses the EventHandler class for the delegate type and the EventArgs class for the event data. Click事件为该委托类型使用EventHandler类,而为该事件数据使用EventArgs类。 msdn2.microsoft.com 10. In some situations, you may want to declare an event to use an existing delegate type as its underlying delegate. 某些情况下,可能会要声明某事件使用现有委托类型为基础委托。 msdn2.microsoft.com 1. This constructs a new instance of the delegate type using the constructor MyDelegate(object, IntPtr). 通过使用MyDelegate(object,IntPtr)构造器,就构建了一个委托类型的新实例。 www.cnblogs.com 2. It is also not permissible to derive a new type from a delegate type. 此外,还不允许从委托类型派生新类型。 msdn2.microsoft.com 3. This method is static (Shared in Visual Basic), so the delegate type must be supplied. 此方法是静态的(在VisualBasic中为Shared),所以必须提供委托类型。 msdn2.microsoft.com 4. Visual Basic cannot implement an event because the delegate type of the event does not match the delegate type of another event. VisualBasic不能实现某个事件,因为该事件的委托类型与另一个事件的委托类型不匹配。 msdn2.microsoft.com 5. A delegate is an instance of a delegate type that has references to 委托是具有对以下内容的引用的委托类型的实例 msdn2.microsoft.com 6. The declaration of a delegate type takes the following form 委托类型声明的格式如下 msdn2.microsoft.com 7. The associated event delegate type for property-changed events is property-changed事件的关联事件委托类型为 msdn2.microsoft.com 8. Declaring Events that Use an Existing Delegate Type 声明使用现有委托类型的事件 msdn2.microsoft.com 9. Class for the delegate type and the 事件为该委托类型使用 msdn2.microsoft.com 10. For example, if the event is based on the EventHandler delegate type, the following code represents the method stub 例如,如果事件基于EventHandler委托类型,则下面的代码表示方法存根 msdn2.microsoft.com |
||||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。