2

Is there any class or analog for work with Base64 in c# like AbstractPreferences in java?

Sergey
  • 11,548
  • 24
  • 76
  • 113
  • 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