2004-01-30 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / FieldOffsetAttribute.cs
1 using System;
2
3 namespace System.Runtime.InteropServices {
4
5         [AttributeUsage (AttributeTargets.Field)]
6         public sealed class FieldOffsetAttribute : Attribute {
7                 private int val;
8                 
9                 public FieldOffsetAttribute( int offset) {
10                         val = offset;
11                 }
12                 public int Value {
13                         get {return val;}
14                 }
15                 
16         }
17 }