Exposing .NET enums to COM clients{VBScript}
- by Codex
Am trying create of PoC for exposing/invoking various .NET objects from COM clients.
The .NET library contains some classes and Enums.
Am able to successfully access the classes in VBScript but not able to access the Enums.
I know that Enums are value types and hence 'CreateObject' wont work in this case.
But am able to access the same Enum in…