.NET: Why isn't base 64 in Encoding.GetEncodings()? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:26:59Z http://stackoverflow.com/feeds/question/735859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/735859/net-why-isnt-base-64-in-encoding-getencodings 1 .NET: Why isn't base 64 in Encoding.GetEncodings()? vg1890 2009-04-09T20:42:51Z 2009-04-09T20:48:02Z <p>I have a function that can decode an array of bytes into a string of characters using a specified encoding.</p> <p>Example:</p> <pre><code>Function Decode(ByVal bytes() As Byte, ByVal codePage As String) As String Dim enc As Text.Encoding = Text.Encoding.GetEncoding(codePage) Return enc.GetString(bytes) End Function </code></pre> <p>If I want to include base64 in this I have to do something like this:</p> <pre><code>Function Decode(ByVal bytes() As Byte, ByVal codePage As String) As String If String.Compare(codePage, "base64", True) = 0 Then Return Convert.ToBase64String(bytes) Else Dim enc As Text.Encoding = Text.Encoding.GetEncoding(codePage) Return enc.GetString(bytes) End If End Function </code></pre> <p>Why is base64 treated special in .NET?</p> http://stackoverflow.com/questions/735859/net-why-isnt-base-64-in-encoding-getencodings/735867#735867 1 Answer by Arnshea for .NET: Why isn't base 64 in Encoding.GetEncodings()? Arnshea 2009-04-09T20:45:12Z 2009-04-09T20:45:12Z <p>It's in System.Convert</p> http://stackoverflow.com/questions/735859/net-why-isnt-base-64-in-encoding-getencodings/735869#735869 13 Answer by Jon Skeet for .NET: Why isn't base 64 in Encoding.GetEncodings()? Jon Skeet 2009-04-09T20:45:28Z 2009-04-09T20:45:28Z <p>They're really not the same thing:</p> <ul> <li>Encodings are ways of representing arbitrary text in binary form.</li> <li>Base64 is a way of representing arbitrary binary data in text form.</li> </ul> <p>You wouldn't normally use them in the same circumstances. You'd use an encoding when the "real" data is text, and base64 when the "real" data is binary.</p> <p>Of course you could implement an encoding to do base64, but personally I don't think it's a good idea.</p>