I am creating an .idl file programmatically. How do I create UUIDs for the interfaces and Methods Programmatically.
Can I generate the UUID programmatically?
I have a GitHub Gist with a Java like UUID implementation in C#: https://gist.github.com/rickbeerendonk/13655dd24ec574954366
The UUID can be created from the least and most significant bits, just like in Java. It also exposes them. The implementation has an explicit conversion to a GUID and an implicit conversion from a GUID.