Open.Core.Helper.CreateId C# (CSharp) Method

CreateId() public static method

Creates a unique identifier.
public static CreateId ( ) : string
return string
        public static string CreateId()
        {
            idCounter++;
            return string.Format("gid{0}", idCounter);
        }