Formatter.WriteArray(Object, String, Type) メソッド
定義
派生クラスでオーバーライドされた場合に、フォーマッタに既に結び付けられているストリームに配列を書き込みます。When overridden in a derived class, writes an array to the stream already attached to the formatter.
protected:
abstract void WriteArray(System::Object ^ obj, System::String ^ name, Type ^ memberType);
protected abstract void WriteArray (object obj, string name, Type memberType);
abstract member WriteArray : obj * string * Type -> unit
Protected MustOverride Sub WriteArray (obj As Object, name As String, memberType As Type)
パラメーター
- obj
- Object
書き込む配列。The array to write.
- name
- String
配列の名前。The name of the array.
- memberType
- Type
配列に保持されている要素の型。The type of elements that the array holds.
注意 (実装者)
このメソッドは、派生クラスで実装する必要があります。You must implement this method in a derived class.