非静态成员里可以引用静态,而静态成员里却不能引用非静态成员,为啥呀?class WoodyTest1
    {
        private static string st1 { get; set; }
        private static void st()
        {
            //noSt();
            //noSt1 = "xxxx";
        }        private string noSt1 { get; set; }
        private void noSt()
        {
            st();
            st1 = "xx";
        }
    }