Mono.CSharp.MemberBase.Define C# (CSharp) Method

Define() public method

public Define ( ) : bool
return bool
		public override bool Define ()
		{
			DoMemberTypeIndependentChecks ();

			//
			// Returns false only when type resolution failed
			//
			if (!ResolveMemberType ())
				return false;

			DoMemberTypeDependentChecks ();
			return true;
		}