希望非常简单,但我无法解决这个问题..
如何使我使用 Age 类创建的对象 Andrew 在 Program 类之外可见?
我得到的错误是;'Andrew.PersonAge 在当前上下文中不存在'
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Testing2
{
public class Age
{
private string personage;
public string PersonAge
{
get { return personage; }
set { personage = value; }
}
}
class Program
{
static void Main(string[] args)
{
Age Andrew = new Age();
Andrew.PersonAge = "30";
}
}
class TestOutput
{
Console.WriteLine(Andrew.PersonAge);
Console.ReadLine();
}
}
慕雪6442864
人到中年有点甜
相关分类