Example #1
0
 public dynamic ConnectData(int TopicID, ref Array Strings, ref bool GetNewValues)
 {
     var start = Convert.ToInt32(Strings.GetValue(0).ToString());
     GetNewValues = true;
     _topics[TopicID] = new IncrementUpwards { CurrentValue = start };
     return start;
 }
Example #2
0
        public dynamic ConnectData(int TopicID, ref Array Strings, ref bool GetNewValues)
        {
            var start = Convert.ToInt32(Strings.GetValue(0).ToString());

            GetNewValues     = true;
            _topics[TopicID] = new IncrementUpwards {
                CurrentValue = start
            };
            return(start);
        }