Exemplo n.º 1
0
        /// <summary>
        ///[20]설명 종목코드의 전일가를 반환한다.
        ///입력값 strCode – 종목코드
        ///반환값 전일가
        /// </summary>
        public String GetMasterLastPrice(String strCode)
        {
            String ret = axKHOpenAPI.GetMasterLastPrice(strCode);

            //&#x0; 널캐릭터문제
            ret = ret.Trim('\0');
            FileLog.PrintF("GetMasterLastPrice(" + strCode + "):" + ret);
            return(ret);
        }