如何将新行添加到BitConverter.ToString

时间:2019-03-24 04:56:07

标签: c# tostring bitconverter

是否可以像Base64FormattingOptions.InsertLineBreaks中使用的那样向BitConverter.ToString添加新行?

我尝试使用RNGCryptoServiceProvider创建一个随机字符。

     public static string randomChar(int size)
     {
          RNGCryptoServiceProvider rngCryptoServiceProvider = new RNGCryptoServiceProvider();
           byte[] randomBytes = new byte[size];
          rngCryptoServiceProvider.GetBytes(randomBytes);
           return BitConverter.ToString(randomBytes).ToUpperInvariant();
     }

我想在结果中添加新行,因此侧面的长度不会太长。

0 个答案:

没有答案