CxMemberMethod
Description
- Derived from
- 
CxMember abstract 
 ICxIdContainer
 ICxParametersContainer
 ICxTypeParametersContainer
 ICxStatementUsageProvider
A type member that defines a callable method with with zero or more type and value parameters and an optional return value.
...
T3 Method<T1, T2, T3>(this T1 p0, ref T2 p1, out T2 p2, [A] int p3, int p4)
  where T1 : class, Type1, ..., TypeN, new()
  where T2 : struct;
...
void Method()
{
}
A method may overload an operator, in which case CxId.Op of ICxIdContainer.Name returns the overloaded operator and the method declaration has the following syntax:
public static T3 operator ?(T1 a) { ... }
public static T3 operator ?(T1 a, T2 b) { ... }
where ? is one of the overloadable operators (see CxOperator).
ICxTypeContainer.Type returns the return type of this method.
- See also