您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

14 行
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. }