Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MethodCodeType.cs « System.Runtime.CompilerServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3608120e5160bbe145514c48677abf9b8e364ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//------------------------------------------------------------------------------
// 
// System.Runtime.CompilerServices.MethodCodeType.cs 
//
// Copyright (C) 2001 Michael Lambert, All Rights Reserved
// 
// Author:         Michael Lambert, michaellambert@email.com
// Created:        Thu 07/18/2001 
//
//------------------------------------------------------------------------------

namespace System.Runtime.CompilerServices
{
 
public enum MethodCodeType
{
    IL,
    Native,
    OPTIL,
    Runtime,
}

} // Namespace