.NET: Why isn't base 64 in Encoding.GetEncodings()? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T23:26:59Zhttp://stackoverflow.com/feeds/question/735859http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/735859/net-why-isnt-base-64-in-encoding-getencodings1.NET: Why isn't base 64 in Encoding.GetEncodings()?vg18902009-04-09T20:42:51Z2009-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#7358671Answer by Arnshea for .NET: Why isn't base 64 in Encoding.GetEncodings()?Arnshea2009-04-09T20:45:12Z2009-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#73586913Answer by Jon Skeet for .NET: Why isn't base 64 in Encoding.GetEncodings()?Jon Skeet2009-04-09T20:45:28Z2009-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>