You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 line
235 B

  1. using System;
  2. using System.Reflection;
  3. namespace SUISSEngine
  4. {
  5. public static class FieldInfoExtensions
  6. {
  7. public static RuntimeFieldHandle GetFieldHandle(this FieldInfo field)
  8. {
  9. return field.FieldHandle;
  10. }
  11. }
  12. }