I have created guid from a string using below code:
private Guid GetGuid(string input)
{
byte[] inputBytes = Encoding.Default.GetBytes(input);
Guid hashGuid = new Guid(inputBytes);
return hashGuid;
}
suppose i given input parameter "Arvind" and got guid like: 77f92c53-38af-42f6-8289-fddbd32f228d
now i want to convert this guid "77f92c53-38af-42f6-8289-fddbd32f228d" back to my original string which is "Arvind" . is there any way?
Thaks,
Arvind
3 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Tapan PatelPosted Mar 10, 2017, 10:03 AM
Arvind SinghPosted Mar 9, 2017, 11:57 PM
Sandip G PatilPosted Mar 9, 2017, 10:07 AM