예제 #1
0
        private string getMemoryAddressFromCommentary()
        {
            if (Commentary == null || Commentary == String.Empty)
            {
                return("");
            }

            var sp = Commentary.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);

            return(sp.Length >= 1 ? "0x" + sp[1] : "");
        }