IsGenuine() C#

When trying to call "isGenuine = TurboActivate.IsGenuine();" from my C# application I get an error stating

"No overload for method 'IsGenuine' takes 0 arguments"

any ideas what is causing this error?

It's because you need to call it like this:

bool reactivate = false;bool isGenuine = TurboActivate.IsGenuine(ref reactivate);

Thank you works perfectly now