Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近、以下のコードに出くわしました。
public interface IBlog<T> { void Add(T blog); IEnumerable<T> GetAll(); T GetRecord(int id); void Delete(int id); }
Tここは何ですか?それを使用する目的は何ですか?
T