Beispiel #1
0
        public string GetCustomValue(StringFieldKey key)
        {
            string retVal;

            _customStrings.TryGetValue(key.Index, out retVal);
            return(retVal);
        }
Beispiel #2
0
 public void SetCustomValue(StringFieldKey key, string value)
 {
     _customStrings[key.Index] = value;
 }
Beispiel #3
0
 public void SetCustomValue(StringFieldKey key, string value)
 {
     _customStrings[key.Index] = value;
 }
Beispiel #4
0
 public string GetCustomValue(StringFieldKey key)
 {
     string retVal;
     _customStrings.TryGetValue(key.Index, out retVal);
     return retVal;
 }