17 lines
322 B
C#
17 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Linq;
|
|
|
|
namespace TomatenMusic.Util
|
|
{
|
|
class RandomUtil
|
|
{
|
|
|
|
public static string GenerateGuid()
|
|
{
|
|
return String.Concat(Guid.NewGuid().ToString("N").Select(c => (char)(c + 17))).ToLower();
|
|
}
|
|
}
|
|
}
|