1 instantiation of CodeEntryPointMethod
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
3098cmmMain = new CodeEntryPointMethod();
13 references to CodeEntryPointMethod
System (13)
compmod\microsoft\csharp\csharpcodeprovider.cs (5)
1801private void GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) { 1835if (en.Current is CodeEntryPointMethod) { 1836GenerateEntryPointMethod((CodeEntryPointMethod)en.Current, e); 2471else if (member is CodeEntryPointMethod) { 2472GenerateEntryPointMethod((CodeEntryPointMethod)member, declaredType);
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1932protected override void GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) {
compmod\system\codedom\compiler\CodeGenerator.cs (5)
296else if (member is CodeEntryPointMethod) { 297GenerateEntryPointMethod((CodeEntryPointMethod)member, declaredType); 789if (en.Current is CodeEntryPointMethod) { 790GenerateEntryPointMethod((CodeEntryPointMethod)en.Current, e); 1766protected abstract void GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c);
compmod\system\codedom\compiler\CodeValidator.cs (2)
281if (e is CodeEntryPointMethod) { 282ValidateStatements(((CodeEntryPointMethod)e).Statements);