Formatter.WriteArray(Object, String, Type) Método
Definição
Quando substituído em uma classe derivada, grava uma matriz no fluxo já anexado ao formatador.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)
Parâmetros
- obj
- Object
A matriz a gravar.The array to write.
- name
- String
O nome da matriz.The name of the array.
- memberType
- Type
O tipo dos elementos contidos na matriz.The type of elements that the array holds.
Notas aos Implementadores
Você deve implementar esse método em uma classe derivada.You must implement this method in a derived class.