Exemplo n.º 1
0
        public string this[MoveCommentTypeE type]
        {
            get
            {
                return(Get(type));
            }
            set
            {
                Set(type, value);

                if (this.Move != null)
                {
                    this.Move.Comments = base.ToDataTableString;
                }
            }
        }
Exemplo n.º 2
0
 public void Set(MoveCommentTypeE type, string value)
 {
     base[type.ToString("d")] = value;
 }
Exemplo n.º 3
0
 public string Get(MoveCommentTypeE type)
 {
     return(base[type.ToString("d")]);
 }