Beispiel #1
0
        /// <summary>Gets the name of the block command.</summary>
        /// <returns>The name of the block command.</returns>
        public string GetCommandName()
        {
            CXString value = Clang.BlockCommandCommentGetCommandName(this);

            using (ClangString cString = new ClangString(value))
            {
                return(cString.ToString());
            }
        }