汇聚点滴,成就美好  
汇聚点滴,成就美好

public class A
    {
        public int IntValue;
        public string StrValue;
       
        public void ShowMessage()
        {
            Console.WriteLine("IntValue={0},StrValue={1}",IntValue.ToString(),StrValue);

        }
    }

 

static void Main(string[] args)
        {
            A a = new A { IntValue = 100, StrValue = "Hello World!" };
            a.ShowMessage();
            Console.ReadKey();
        }

posted on 2013-05-28 22:12  极地雪狼  阅读(133)  评论(0编辑  收藏  举报