LocalizedStringForKeyValueTable() public method

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