C#对二进制数据进行base64编码的方法
程序员文章站
2024-01-27 21:22:52
本文实例讲述了c#对二进制数据进行base64编码的方法。分享给大家供大家参考。具体实现方法如下:
using system;
using system.io;...
本文实例讲述了c#对二进制数据进行base64编码的方法。分享给大家供大家参考。具体实现方法如下:
using system; using system.io; static class mymodclass { public static string base64encodebytes(this byte[] inbytes) { return (convert.tobase64string(inbytes)); } }
希望本文所述对大家的c#程序设计有所帮助。