mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
12 lines
212 B
C#
12 lines
212 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AntBlazor
|
|||
|
{
|
|||
|
public static class IdGeneratorHelper
|
|||
|
{
|
|||
|
public static string Generate(string prefix)
|
|||
|
{
|
|||
|
return prefix + Guid.NewGuid();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|