Put a string into the stream
string test = "Hello, world!"; IMemStream stream; stream.put(test); for(int i=0; i<test.length; i++) assert(stream.getBytes[i] == test[i]);
See Implementation
Put a string into the stream