out不用返回值怎样调用
class Text{
public void A(double r, out double c)
{
c = 2 * Math.PI * r;
double s = Math.PI * Math.Pow(r, 2);
}
}
class Program
{
static void Main(string[] args)
{
//高手们帮帮忙啊!感激不尽。
}
}
2010-12-07 11:22

2010-12-07 14:41
2010-12-07 15:19
2010-12-07 15:27
2010-12-09 11:46
2010-12-09 13:08
2010-12-09 19:20