Rhino.NativeContinuation.IsContinuationConstructor C# (CSharp) Method

IsContinuationConstructor() public static method

public static IsContinuationConstructor ( IdFunctionObject f ) : bool
f IdFunctionObject
return bool
		public static bool IsContinuationConstructor(IdFunctionObject f)
		{
			if (f.HasTag(FTAG) && f.MethodId() == Id_constructor)
			{
				return true;
			}
			return false;
		}