FieldOffsetAttribute.cs 300 B

1234567891011121314151617
  1. using System;
  2. namespace System.Runtime.InteropServices {
  3. [AttributeUsage (AttributeTargets.Field)]
  4. public sealed class FieldOffsetAttribute : Attribute {
  5. private int val;
  6. public FieldOffsetAttribute( int offset) {
  7. val = offset;
  8. }
  9. public int Value {
  10. get {return val;}
  11. }
  12. }
  13. }