Mono.CSharp.CSharpCodeGenerator.IsAbstract C# (CSharp) 메소드

IsAbstract() 정적인 개인적인 메소드

static private IsAbstract ( MemberAttributes attributes ) : bool
attributes MemberAttributes
리턴 bool
		static bool IsAbstract (MemberAttributes attributes)
		{
			return (attributes & MemberAttributes.ScopeMask) == MemberAttributes.Abstract;
		}
CSharpCodeGenerator