aa65416192bf0ac5304addaa1cf1bac9811ff389
[mono.git] / mcs / class / referencesource / System / compmod / system / codedom / CodeEntryPointMethod.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="CodeEntryPointMethod.cs" company="Microsoft">
3 // 
4 // <OWNER>Microsoft</OWNER>
5 //     Copyright (c) Microsoft Corporation.  All rights reserved.
6 // </copyright>                                                                
7 //------------------------------------------------------------------------------
8
9 namespace System.CodeDom {
10
11     using System.Diagnostics;
12     using System;
13     using Microsoft.Win32;
14     using System.Collections;
15     using System.Runtime.InteropServices;
16
17     /// <devdoc>
18     ///    <para>
19     ///       Represents a class method that is the entry point
20     ///    </para>
21     /// </devdoc>
22     [
23         ClassInterface(ClassInterfaceType.AutoDispatch),
24         ComVisible(true),
25         Serializable,
26     ]
27     public class CodeEntryPointMethod : CodeMemberMethod {
28
29         /// <devdoc>
30         ///    <para>[To be supplied.]</para>
31         /// </devdoc>
32         public CodeEntryPointMethod() {
33         }
34     }
35 }