I\'ve been asked to export a list of users from ActiveDirectory, and Convert the GUIDs to a numeric equivalent for display (so I\'ll .ToString that after). I\'ve done some searc
You could simply convert Guid to numeric representation using ToString("n") :
Guid.NewGuid().ToString("n")
will return something like "5ee575bd995b419499aff6d6967c4a35"