I have a DotNet class with methods with the following signature:

public bool MyMethod(out int myVariable)
{
  myVariable = 5;
  return true
}

Does anybody know how I cancall them from Python via CLR?
I've tried MyMethod(a), where a has been an empty list, a list with one
element, an integer etc, but nomatter what i get an error saying TypeError:
no method matches given arguments

Can anybody help?

Jill