[Source]
# File lib/ole/types/base.rb, line 32 32: def self.dump str 33: # do i need to append the null byte? 34: str.to_s 35: end
# File lib/ole/types/base.rb, line 26 26: def self.load str 27: # not sure if its always there, but there is often a trailing 28: # null byte. 29: new str.chomp(0.chr) 30: end
[Validate]