This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Description: Base24 encode and decode | |
// Author: wangye <pcn88 at hotmail dot com> | |
// Website: http://wangye.org | |
// | |
public static class Base24 | |
{ | |
private static string sel = "BCDFGHJKMPQRTVWXY2346789"; | |
public static string Encode(string Text) |