CSharpSourceEmitter.SourceEmitter.PrintKeywordProtectedInternal C# (CSharp) Method

PrintKeywordProtectedInternal() public method

public PrintKeywordProtectedInternal ( ) : bool
return bool
    public virtual bool PrintKeywordProtectedInternal() {
      PrintToken(CSharpToken.Protected);
      PrintToken(CSharpToken.Internal);
      return true;
    }
SourceEmitter