欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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#程序设计有所帮助。