Skip to content

Instantly share code, notes, and snippets.

View sdesyllas's full-sized avatar
🎯
Focusing

Spyros sdesyllas

🎯
Focusing
View GitHub Profile
@wangye
wangye / Base24.cs
Created March 7, 2012 02:31
Base24 encode and decode C#
//
// 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)