예제 #1
0
 static public string Get(string key)
 {
     try
     {
         return((string)_localizedResources.GetType().GetProperty(key).GetValue(_localizedResources, null));
     }
     catch (Exception)
     {
         return(String.Format("<Localization: {0:g}>", key));
     }
 }