DataOutputStream.WriteShort(Int32) Method
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.
Writes a short
to the underlying output stream as two
bytes, high byte first.
[Android.Runtime.Register("writeShort", "(I)V", "")]
public void WriteShort (int v);
[<Android.Runtime.Register("writeShort", "(I)V", "")>]
abstract member WriteShort : int -> unit
override this.WriteShort : int -> unit
Parameters
- v
- Int32
a short
to be written.
Implements
- Attributes
Exceptions
Remarks
Writes a short
to the underlying output stream as two bytes, high byte first. If no exception is thrown, the counter written
is incremented by 2
.
Java documentation for java.io.DataOutputStream.writeShort(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.