CharArrayWriter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CharArrayWriter() |
Creates a new CharArrayWriter. |
CharArrayWriter(Int32) |
Creates a new CharArrayWriter with the specified initial size. |
CharArrayWriter(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
CharArrayWriter()
Creates a new CharArrayWriter.
[Android.Runtime.Register(".ctor", "()V", "")]
public CharArrayWriter ();
- Attributes
Remarks
Creates a new CharArrayWriter.
Java documentation for java.io.CharArrayWriter.CharArrayWriter()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
CharArrayWriter(Int32)
Creates a new CharArrayWriter with the specified initial size.
[Android.Runtime.Register(".ctor", "(I)V", "")]
public CharArrayWriter (int initialSize);
[<Android.Runtime.Register(".ctor", "(I)V", "")>]
new Java.IO.CharArrayWriter : int -> Java.IO.CharArrayWriter
Parameters
- initialSize
- Int32
an int specifying the initial buffer size.
- Attributes
Exceptions
if initialSize
.
Remarks
Creates a new CharArrayWriter with the specified initial size.
Java documentation for java.io.CharArrayWriter.CharArrayWriter(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
CharArrayWriter(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected CharArrayWriter (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.IO.CharArrayWriter : nativeint * Android.Runtime.JniHandleOwnership -> Java.IO.CharArrayWriter
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.