Plain Old CLR Object

Plain Old CLR Object[読み疑問点](略称:POCO)とは、共通言語ランタイム: Common Language Runtime、CLR)のみに依存するプレーンなオブジェクトである。

実例(C#)

class Person
{
    public int Id { get; set; }
    public string Name { get; set; }
    public DateTime BirthDate { get; set; }
}

脚注

注釈

出典

外部リンク

Uses material from the Wikipedia article Plain Old CLR Object, released under the CC BY-SA 4.0 license.