Formatter.WriteArray Method
.NET Framework 1.1
When overridden in a derived class, writes an array to the stream already attached to the formatter.
The Formatter type is not CLS-compliant. For more information about CLS compliance, see What is the Common Language Specification.
[Visual Basic] Protected MustOverride Sub WriteArray( _ ByVal obj As Object, _ ByVal name As String, _ ByVal memberType As Type _ ) [C#] protected abstract void WriteArray( object obj, string name, Type memberType ); [C++] protected: virtual void WriteArray( Object* obj, String* name, Type* memberType ) = 0; [JScript] protected abstract function WriteArray( obj : Object, name : String, memberType : Type );
Parameters
- obj
- The array to write.
- name
- The name of the array.
- memberType
- The type of elements that the array holds.
Remarks
Notes to Inheritors: You must implement this method in a derived class.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
Formatter Class | Formatter Members | System.Runtime.Serialization Namespace