public override java.nio.CharBuffer put(char c)
 {
     if (_position == _limit)
     {
         throw new java.nio.BufferOverflowException();
     }
     byteBuffer.putChar(_position++ *libcore.io.SizeOf.CHAR, c);
     return(this);
 }