我基本上想从同一个类中的私有方法调用一个对象。我该怎么做呢?
如果我有
  Private void method1(){
         object a = new Object();
         object b = new Object();
  } 
  Private void method2(){
         // call object a and b here
           i.e.   a.Children.Add(tb);
                  b.Children.Add(tb);
  }