AspectSharp.Lang.Steps.Types.PruneTypesStep.AssertNotInterface C# (CSharp) 메소드

AssertNotInterface() 개인적인 메소드

private AssertNotInterface ( LexicalInfo info, Type type, String message ) : void
info AspectSharp.Lang.AST.LexicalInfo
type System.Type
message String
리턴 void
		private void AssertNotInterface(LexicalInfo info, Type type, String message)
		{
			if (type.IsInterface)
			{
				Context.RaiseErrorEvent(info, message);
			}
		}