Plain Old CLR Object
Plain Old CLR Object(略称:POCO[注釈 1])とは、共通言語ランタイム(英: Common Language Runtime、CLR)のみに依存するプレーンなオブジェクトである。
実例(C#)
class Person
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime BirthDate { get; set; }
}
脚注
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.