c#里面没有这个运算符。可以用以下的代替。double Math.Pow(double x,double y) { double x = System.Math.Pow(2 , 3); this.textBox1.Text=x.ToString(); }