Is it possible to declare a constant Guid in C#?
I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write
static readonly Guid
I am doing it like this:
public static class RecordTypeIds { public const string USERS_TYPEID = "5C60F693-BEF5-E011-A485-80EE7300C695"; public static Guid Users { get { return new Guid(EntityTypeIds.USERS_TYPEID); } } }