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

            _customStrings.TryGetValue(key.Index, out retVal);
            return(retVal);
        }
示例#2
0
 public void SetCustomValue(StringFieldKey key, string value)
 {
     _customStrings[key.Index] = value;
 }
示例#3
0
文件: Block.cs 项目: renezaal/dfLike
 public void SetCustomValue(StringFieldKey key, string value)
 {
     _customStrings[key.Index] = value;
 }
示例#4
0
文件: Block.cs 项目: renezaal/dfLike
 public string GetCustomValue(StringFieldKey key)
 {
     string retVal;
     _customStrings.TryGetValue(key.Index, out retVal);
     return retVal;
 }