Is there any class or analog for work with Base64 in c# like AbstractPreferences in java?
Asked
Active
Viewed 81 times
2
-
I'm not sure what `AbstractPreferences` does but see if [`Convert.ToBase64String()`](http://msdn.microsoft.com/en-us/library/dhx0d524.aspx) and [`Convert.FromBase64String()`](http://msdn.microsoft.com/en-us/library/system.convert.frombase64string.aspx) would be of any help. – Bala R Jun 13 '11 at 05:01
1 Answers
0
Convert.ToBase64String http://msdn.microsoft.com/en-us/library/system.convert.tobase64string.aspx
Convert.FromBase64String http://msdn.microsoft.com/en-us/library/system.convert.frombase64string.aspx

Sysyphus
- 1,061
- 5
- 10