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

AssemblyBuilderAccess.cs « System.Reflection.Emit « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c6a97d9acae3a3bb6adb751557fdd13a9a074bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//--------------------------
// System.Reflection.Emit
// Author: Mandar Nanivadekar
//
// Created: 29/08/2001
//------------------------------

namespace System.Reflection.Emit
{
  public enum AssemblyBuilderAccess
  {
    Run = 1,
    Save = 2,
    RunAndSave = 3
  }
}