- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
public function cloneString(str:String):String {
if(str == null) return null;
_byteArray.position = 0;
_byteArray.writeUTF(str);
_byteArray.position = 0;
var res:String = _byteArray.readUTF();
// fuck yeah!
return res;
}
3.14159265 21.10.2011 16:08 # −3
TheHamstertamer 21.10.2011 19:36 # −3
airrussia 21.10.2011 22:06 # −2
makc3d 21.10.2011 22:17 # 0
wvxvw 22.10.2011 16:54 # 0
makc3d 22.10.2011 19:55 # 0
kyzi007 02.11.2011 12:56 # +1
guest8 09.04.2019 11:47 # −999