Let me try,不知道的就用xxx代替:)private class  xxx{//派生至System.Object
  static Hashtable xxx1;
  static Hashtable xxx2;
}

解决方案 »

  1.   

    刚刚写了段:
    using System;
    using System.Collections;class  xxx{//extends from System.Object
      static Hashtable xxx1;
      static Hashtable xxx2;
      static void Main(){ 
      }
    }用ildasm一看结果为:
    xxx:class
    ============
    .class private auto ansi beforefieldinit xxx
           extends [mscorlib]System.Object
    {
    } // end of class xxxxxx.xxx1
    ============
    .field private static class [mscorlib]System.Collections.Hashtable xxx1xxx.xxx2
    ============
    .field private static class [mscorlib]System.Collections.Hashtable xxx2