Overload | Description |
---|---|
GetBytes(Char[],Int32,Int32,Byte[],Int32) | Encodes "charCount" characters from the given string, starting from the character at index "charIndex" and puts them in the specified byte array, starting from "byteIndex". |
GetBytes(String) | Encodes the given string and returns the resulting bytes. |
GetBytes(Char[]) | Encodes the given string and returns the resulting bytes. |
GetBytes(String,Int32,Int32) | Encodes "charCount" characters from the given string, starting from the character at index "charIndex" and returns the resulting byte array. |
GetBytes(Char[],Int32,Int32) | Encodes "charCount" characters from the given string, starting from the character at index "charIndex" and returns the resulting byte array. |