Explanation of POCO

前端 未结 3 691
说谎
说谎 2020-12-05 02:33

I\'m wondering if anyone can give a solid explanation (with example) of POCO (Plain Old CLR Object). I found a brief explanation on Wikipedia but it really doesn\'t give a

3条回答
  •  再見小時候
    2020-12-05 03:37

    Example of a POCO:

    class Person {
    
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string EmailAddress { get; set; }
    
    }
    

提交回复
热议问题