Is this possible somehow to generate a GUID in C#, that mostly corresponds to something i need.
For ex:
I have some version variable : 02.10.0020
And i need to generate a GUID which closely corresponds to the version variable.
Something like {02102012-98EF-41F6-96FF-2935C306E479}
Is this possible ??
This is not directly possible.
You can generate a GUID then convert to a string and replace the first section with the wanted format.
This does mean that you are reducing the entropy of the GUID.