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

FeatureAttr.cs « codegen « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3eecb0d067f8841390b432dcbbd1d27cecb2d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Mono.ILASM.FeatureAttr
//
// Author(s):
//  Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All rights reserved
//


using System;

namespace Mono.ILASM {

        [Flags]
        public enum FeatureAttr {
                None = 0x0,
                Instance = 0x1,
                Rtspecialname = 0x2,
                Specialname = 0x4
        }

}