ConstructorBuilder.DefineParameterCore 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,定義這個建構函式的參數。
protected:
abstract System::Reflection::Emit::ParameterBuilder ^ DefineParameterCore(int iSequence, System::Reflection::ParameterAttributes attributes, System::String ^ strParamName);
protected abstract System.Reflection.Emit.ParameterBuilder DefineParameterCore (int iSequence, System.Reflection.ParameterAttributes attributes, string strParamName);
abstract member DefineParameterCore : int * System.Reflection.ParameterAttributes * string -> System.Reflection.Emit.ParameterBuilder
Protected MustOverride Function DefineParameterCore (iSequence As Integer, attributes As ParameterAttributes, strParamName As String) As ParameterBuilder
參數
- iSequence
- Int32
在參數清單中參數的位置。 第一個參數的參數索引從數字 1 開始。
- attributes
- ParameterAttributes
這個參數的屬性。
- strParamName
- String
參數名稱。 名稱可以是 null
字串。
傳回
, ParameterBuilder 表示這個建構函式的新參數。