Method PutChar
PutChar(Char)
Writes the given
The
Declaration
public abstract ByteBuffer PutChar(char value)
Parameters
Type | Name | Description |
---|---|---|
System.Char | value | the |
Returns
Type | Description |
---|---|
ByteBuffer | this buffer. |
Exceptions
Type | Condition |
---|---|
BufferOverflowException | if position is greater than |
ReadOnlyBufferException | if no changes may be made to the contents of this buffer. |
PutChar(Int32, Char)
Writes the given
The
Declaration
public abstract ByteBuffer PutChar(int index, char value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | the index, must not be negative and equal or less than |
System.Char | value | the |
Returns
Type | Description |
---|---|
ByteBuffer | this buffer. |
Exceptions
Type | Condition |
---|---|
ReadOnlyBufferException | if no changes may be made to the contents of this buffer. |