AddKeyValue() 공개 메소드

Adds arbitrary string 'value' under 'key', allowing custom properties to be stored in this Timing step.
public AddKeyValue ( string key, string value ) : void
key string
value string
리턴 void
예제 #1
0
        internal void AddDataImpl(string key, string value)
        {
            if (Head == null)
            {
                return;
            }

            Head.AddKeyValue(key, value);
        }