536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="CodeEntryPointMethod.cs" company="Microsoft">
|
|
//
|
|
// <OWNER>Microsoft</OWNER>
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.CodeDom {
|
|
|
|
using System.Diagnostics;
|
|
using System;
|
|
using Microsoft.Win32;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Represents a class method that is the entry point
|
|
/// </para>
|
|
/// </devdoc>
|
|
[
|
|
ClassInterface(ClassInterfaceType.AutoDispatch),
|
|
ComVisible(true),
|
|
Serializable,
|
|
]
|
|
public class CodeEntryPointMethod : CodeMemberMethod {
|
|
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public CodeEntryPointMethod() {
|
|
}
|
|
}
|
|
}
|