コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReturnBinderDescriptor"/> class.
 /// </summary>
 /// <param name="returnType">Type of the return.</param>
 /// <param name="returnTypeBinder">The return type binder.</param>
 public ReturnBinderDescriptor(Type returnType, IReturnBinder returnTypeBinder)
 {
     this.returnType       = returnType;
     this.returnTypeBinder = returnTypeBinder;
 }
コード例 #2
0
		/// <summary>
		/// Initializes a new instance of the <see cref="ReturnBinderDescriptor"/> class.
		/// </summary>
		/// <param name="returnType">Type of the return.</param>
		/// <param name="returnTypeBinder">The return type binder.</param>
		public ReturnBinderDescriptor(Type returnType, IReturnBinder returnTypeBinder)
		{
			this.returnType = returnType;
			this.returnTypeBinder = returnTypeBinder;
		}