How to determine if a string contains a GUID vs just a string of numbers.
will a GUID always contain at least 1 alpha character?
See if these helps :-
Guid.Parse
Guid guidResult = Guid.Parse(inputString)
Guid.TryParse
bool isValid = Guid.TryParse(inputString, out guidOutput)
1.4m articles
1.4m replys
5 comments
57.0k users