How to check if two GUID match?
Using the following C# code, how to match if g2 has same GUID as g1:
Guid g1 = new Guid("{10349469-c6f7-4061-b2ab-9fb4763aeaed}");
Guid g2 = new Guid("{45DF902E-2ECF-457A-BB0A-E04487F71D63}");
How to check if two GUID match?
Using the following C# code, how to match if g2 has same GUID as g1:
Guid g1 = new Guid("{10349469-c6f7-4061-b2ab-9fb4763aeaed}");
Guid g2 = new Guid("{45DF902E-2ECF-457A-BB0A-E04487F71D63}");