Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 37:90f0cab1febc
Sugerencia de resharper sobre optimización
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 17:04:03 -0300 |
parents | 475be11edf56 |
children | 65bbcdd5d357 |
line wrap: on
line source
using System; using System.Collections.Generic; namespace AltNetHispano.Agendas.Repositories.Memory { public class RepositoryBase<T> { protected static readonly IDictionary<Guid, T> Objects = new Dictionary<Guid, T>(); } }