2003-05-19 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Reflection.Emit / AssemblyBuilderAccess.cs
1 //--------------------------
2 // System.Reflection.Emit
3 // Author: Mandar Nanivadekar
4 //
5 // Created: 29/08/2001
6 //------------------------------
7
8 namespace System.Reflection.Emit
9 {
10   public enum AssemblyBuilderAccess
11   {
12     Run = 1,
13     Save = 2,
14     RunAndSave = 3
15   }
16 }