示例#1
0
 public string GetMappedSourcePath(int index)
 {
     return(LibClang.clang_CompileCommand_getMappedSourcePath(Handle, (uint)index).Unwrap());
 }
示例#2
0
 /// <summary>
 /// Get Mapped Source Path
 /// </summary>
 /// <param name="i">Index</param>
 /// <returns>Mapped Source Path</returns>
 public string GetMappedSourcePath(int i)
 {
     return(LibClang.clang_CompileCommand_getMappedSourcePath(this.Handle, (uint)i).ToManaged());
 }