Hi,
I create method in c# class that contains enum type as paramter:
createPrivilege(string _role, EUKSecurityLevel _securityLevel)
EUKSecurityLevel is enum
then I call this method in x class :
securityLevel=EUKSecurityLevel ::Read; eukAddElement.createPrivilege("test", securityLevel);
But I get error that createPrivilege(System.string,systme.object) is not found in the c# class