Wing075's Blog
HOME DIARY ALBUM FOOTPRINTS ABOUT
// The page is not wrong, but my introduction to this procedure.
using System;
using System.Collections.Generic;

namespace Chinese
{
    public class Person : YMJ, MJQ
    {
        public Person()
        {
            string RealName = "MaoYiJun";
            string Nickname = "Wing075";
            DateTime Brithday = Convert.ToDateTime("1988-09-10 16:28");
            string Sex = "Male";
        }

        private Person Girlfriend()
        {
            Person Info = new Person();
            Info.RealName = "SuShiYi";
            Info.Nickname = "SUSHI";
            Info.Brithday = Convert.ToDateTime("1989-10-09 09:25");
            Info.Sex = "Female";
            return Info;
        }

        public List<string> Skill()
        {
            List<string> Info = new List<string>();
            Info.Add("Program");
            Info.Add("Photoshop");
            return Info;
        }

        public Dictionary<string, string> Contact()
        {
            Dictionary<string, string> Info 
                = new Dictionary<string, string>();
            Info.Add("QQ", "248119790");
            Info.Add("MSN", "wing075@wing075.com");
            Info.Add("Email", "i@wing075.com");
            Info.Add("Mobile telephone", "15801872373");
            return Info;
        }

        public Dictionary<DateTime, string> History()
        {
            Dictionary<DateTime, string> Info 
                = new Dictionary<DateTime, string>();
            Info.Add(Convert.ToDateTime("1995-09-01"), 
                "Eat, drink, and be merry ");
            Info.Add(Convert.ToDateTime("2007-01-01"), 
                "Learning Programming");
            Info.Add(Convert.ToDateTime("2009-08-03"), 
                "Engaged in software development");
            return Info;
        }

        public List<string> Hobby()
        {
            List<string> Info = new List<string>();
            Info.Add("Astronomy, biology, chemistry, " 
                + "electronic circuits, programming. "
                + "Everything like it, "
                + "Jack of all trades is master of none.");
            return Info;
        }

        public List<string> Character()
        {
            List<string> Info = new List<string>();
            Info.Add("Dual personality, Cold and ardent.");
            return Info;
        }
    }
}

Wing075's Blog Powered by Wing075 v1.9.0 © 2010

Theme Design By Dimox And Code By Wing075

China Shanghai ICP NO.08110664