예제 #1
0
        /// <summary>
        /// Loading the text contents based on the current map configuration
        /// </summary>
        public static string LoadTextContents()
        {
            string txt = "";

            // saving the map into a temporary file
            if (map != null)
            {
                txt = map.convertToString();
            }
            return(txt);
        }