/// <summary>Gets the text for.</summary> /// <returns>The text.</returns> public string GetText() { CXString value = Clang.TextCommentGetText(this); using (ClangString cString = new ClangString(value)) { return(cString.ToString()); } }
/// <summary>Gets the name of the template parameter.</summary> /// <returns>The name.</returns> public string GetParamName() { CXString value = Clang.ParamCommandCommentGetParamName(this); using (ClangString cString = new ClangString(value)) { return(cString.ToString()); } }