比如:public class News
    {
        public News() { }
        public string Title { get; set; }
    }与    public class News
    {
        public News() { }
        string title;        public string Title
        {
            get { return title; }
            set { title = value; }
        }    }这两种写法在vs2008里貌似都能使用,但应该有什么区别吧