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; }
}

脚注

注釈

  1. POCOは「ピーオーシーオー」[1]または「ポゥコゥ[2]と発音する。

出典

外部リンク

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.