Ruby equivalent to .NET's Encoding.ASCII.GetString(byte[])
- by flyerhzm
Does Ruby have an equivalent to .NET's Encoding.ASCII.GetString(byte[])?
Encoding.ASCII.GetString(bytes[]) takes an array of bytes and returns a string after decoding the bytes using the ASCII encoding.