2005-03-15から1日間の記事一覧

ResourceManager 続き

とりあえず、 public class ResMgr { private readonly ResourceManager rm; private readonly Hashtable cache; public ResMgr(Type t) { this.rm = new ResourceManager(t); this.cache = new Hashtable(); } public string GetString(string key) { if (!…