LocalizedStringForKeyValueTable() public method

public LocalizedStringForKeyValueTable ( string key, string value, string table ) : string
key string
value string
table string
return string
Esempio n. 1
0
 public static string KNLocalizedStringWithDefaultValue(string key, string tableName, KNBundle bundle, string value, string comment)
 {
     return bundle.LocalizedStringForKeyValueTable(key, value, tableName);
 }
Esempio n. 2
0
 public static string KNLocalizedStringFromTableInBundle(string key, string tableName, KNBundle bundle, string comment)
 {
     return bundle.LocalizedStringForKeyValueTable(key, null, tableName);
 }