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