# Base62.Net **Repository Path**: JoyMoe/Base62.Net ## Basic Information - **Project Name**: Base62.Net - **Description**: .Net Base62 编码实作 开源中国码云项目仅供访问 GitHub 不畅者临时查阅代码使用,Issue、PR 请移步 GitHub - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/JoyMoe/Base62.Net - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-12-26 - **Last Updated**: 2021-05-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Base62.Net Base62 Convertor for .Net Convert between byte array and base62 string. Special thanks to [Mengye Ren](https://github.com/renmengye) and his [base62-csharp](https://github.com/renmengye/base62-csharp), and [Daniel Destouche](https://github.com/ghost1face) and his [base62](https://github.com/ghost1face/base62). [![AppVeyor](https://img.shields.io/appveyor/ci/JoyMoe/base62-net.svg)](https://ci.appveyor.com/project/JoyMoe/base62-net) [![license](https://img.shields.io/github/license/JoyMoe/Base62.Net.svg)](https://github.com/JoyMoe/Base62.Net/blob/master/LICENSE) [![NuGet](https://img.shields.io/nuget/v/Base62-Net.svg)](https://www.nuget.org/packages/Base62-Net) [![NuGet](https://img.shields.io/nuget/vpre/Base62-Net.svg)](https://www.nuget.org/packages/Base62-Net/absoluteLatest) ![net452](https://img.shields.io/badge/.Net-4.5.2-brightgreen.svg) ![net462](https://img.shields.io/badge/.Net-4.6.2-brightgreen.svg) ![netstandard2.0](https://img.shields.io/badge/.Net-netstandard2.0-brightgreen.svg) Example ------------- ```csharp var s = (new byte[] { 116, 32, 8, 99, 100, 232, 4, 7 }).ToBase62(); var b = "T208OsJe107".FromBase62(); ``` ## License The MIT License More info see [LICENSE](LICENSE)