Program
Posted 沫涵灵钧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Program相关的知识,希望对你有一定的参考价值。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PersonDemo2
{
class Program
{
static void Main(string[] args)
{
// Person p = new Person() { Name = "大圣" };
// p.Speak("only you");
// Stu s = new Stu();
// //Person p = new Person() { Gender=Gender.Man, Hobby="吃鸡翅膀", Name="大圣" };
//// s.ShowInfo();
// s.Speak("曾经有........三个字");
Person p = new Stu();
p.Study();
p.Speak("xx");
// Stu s = new Person();
}
}
}
以上是关于Program的主要内容,如果未能解决你的问题,请参考以下文章