Ejemplo n.º 1
0
        private void UpdateId(uint resp_val, string s)
        {
            if (resp_val != 0)
            {
                return;
            }

            bool b = uint.TryParse(s, out _id);

            if (!b)
            {
                Debug.WriteLine("TNF::UpdateId - Error parsing ID (" + s + ")");
                return;
            }

            _radio.AddTNF(this);
        }