1 instantiation of CodeEntryPointMethod
PresentationBuildTasks (1)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
3173cmmMain = new CodeEntryPointMethod();
14 references to CodeEntryPointMethod
System (1)
src\libraries\shims\System\ref\System.cs (1)
55[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.CodeEntryPointMethod))]
System.CodeDom (13)
Microsoft\CSharp\CSharpCodeGenerator.cs (5)
1300private void GenerateEntryPointMethod(CodeEntryPointMethod e) 1337if (current is CodeEntryPointMethod) 1339GenerateEntryPointMethod((CodeEntryPointMethod)current); 2002else if (member is CodeEntryPointMethod) 2004GenerateEntryPointMethod((CodeEntryPointMethod)member);
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
1696protected override void GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c)
System\CodeDom\Compiler\CodeGenerator.cs (5)
155else if (member is CodeEntryPointMethod) 157GenerateEntryPointMethod((CodeEntryPointMethod)member, declaredType); 761if (current is CodeEntryPointMethod) 763GenerateEntryPointMethod((CodeEntryPointMethod)current, e); 1572protected abstract void GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c);
System\CodeDom\Compiler\CodeValidator.cs (2)
321if (e is CodeEntryPointMethod) 323ValidateStatements(((CodeEntryPointMethod)e).Statements);