Copy string value to the location being pointed to as a wide string ( wchar_t ). @param offset byte offset from pointer at which characters in value must be set @param value WString value to set
(long offset, WString value)
| 1124 | * @param value <code>WString</code> value to set |
| 1125 | */ |
| 1126 | public void setString(long offset, WString value) { |
| 1127 | setWideString(offset, value == null ? null : value.toString()); |
| 1128 | } |
| 1129 | |
| 1130 | /** |
| 1131 | * Copy bytes out of string <code>value</code> to the location being |