是否可以像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();
}
我想在结果中添加新行,因此侧面的长度不会太长。