LynnaLab.Data.SetValue C# (CSharp) Method

SetValue() public method

public SetValue ( int i, string value ) : void
i int
value string
return void
        public virtual void SetValue(int i, string value)
        {
            if (values[i] != value) {
                values[i] = value;
                Modified = true;
                if (dataModifiedEvent != null)
                    dataModifiedEvent(this, null);
            }
        }

Same methods

Data::SetValue ( string s, int i ) : void
Data::SetValue ( string s, string value ) : void

Usage Example

示例#1
0
 public virtual void SetValue(string s)
 {
     switch (ValueType)
     {
     case DataValueType.String:
     default:
         data.SetValue(valueIndex, s);
         break;
     }
 }
All Usage Examples Of LynnaLab.Data::SetValue