19 lines
293 B
C#
19 lines
293 B
C#
namespace MyOffice.Core.Helpers;
|
|
|
|
using MyOffice.Core.Extensions;
|
|
|
|
public class RandomizationHelper
|
|
{
|
|
public static string Generate(int length)
|
|
{
|
|
var result = "";
|
|
|
|
while(result.Length < length)
|
|
{
|
|
result += Guid.NewGuid().ToShort();
|
|
}
|
|
|
|
return result.Substring(0, length);
|
|
}
|
|
}
|