コード例 #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;
 }