Note that you are talking about the (canonical) string representation of Guid. In fact, Guid is a 128-bit integer value.
You can use the "N" Guid.ToString(String) with an overload of Guid.ToString(String) .
Guid.NewGuid().ToString("N");
By default, lowercase letters. A manual with only capital letters can only be achieved by manually converting them all to uppercase, for example:
Guid.NewGuid().ToString("N").ToUpper();
A pointer with a letter or numbers does not make sense. The guideline representation is hexadecimal and therefore always (well, most likely) contains both.
Christian.K Jan 16 2018-12-12T00: 00Z
source share