Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.net 提供了自己的转换到/从 base64 编码的实现,但有时我看到人们编写自己的编码。只是想知道现实生活中的应用程序是什么,您必须编写自定义编码器,而不是使用 .net 提供的编码器
这些通常发生在从另一个环境移植的代码中。
Convert.ToBase64String.Net 在和中有足够的 Bas64 能力System.Security.Cryptography.ToBase64Transform;没有必要自己写。
Convert.ToBase64String
System.Security.Cryptography.ToBase64Transform