public void Test_OnSTILinkSymChange()
        {
            SterlingLib.STIEvents stiEvent = new SterlingLib.STIEvents();
            SterlingLib.STIApp stiapp = new SterlingLib.STIApp();

            stiEvent.OnSTILinkSymChange += stiEvent_OnSTILinkSymChange;
            stiapp.SwitchLinkGroupSymbol(1, "IBM 120727C215000", "O");
        }
        public void Test_GetDestinationList()
        {
            SterlingLib.STIApp stiapp = new SterlingLib.STIApp();

            Array res = System.Array.CreateInstance(typeof(string), 0);
            try
            {
                stiapp.GetDestinationList(ref res);
            }
            catch (Exception ex)
            {
                throw;
            }
        }