新手求助~~内附编码
using System;using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication4
{
class bb
{
public int a = 3;
public int b = 5;
}
class Program
{
static void Main(string[] args)
{
bb A =new bb();
Console.WriteLine ("{0},{1}",A.a,A.b);
}
}
}
这是整个程序,我想问下
bb A =new bb();
这句是什么意思~~?
能清楚的帮我解释下吗~谢谢大家 了`