2014-01-08から1日間の記事一覧

プログラミングC#読解メモ 第四章 ジェネリック

「ジェネリック」という言葉がどの次元の言葉なのかはなんか微妙な感じだけど型を引数に取って型を作る機能だと認識する。たとえば、 public class TestGeneric<T> { public TestGeneric(T content, string name) { Content = content; Name = name; } public T</t>…