|
Creates string with specified length.
C/C++
char* StringRandom(int length)
C#
string StringRandom(int length)
Notes:
- maximum string length is 2048. You should call the function a few times to generate longer strings.
- if 'length' parameter <=0 the function returns empty string.
|