File: vtkStringArray_Extra.cs

package info (click to toggle)
activiz.net 1%3A1.0~git20111214-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,280 kB
  • ctags: 5,957
  • sloc: cs: 28,767; python: 915; cpp: 130; makefile: 35; sh: 11
file content (10 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
   [DllImport(vtkCommonEL_dll, EntryPoint = "vtkStringArray_GetValue")]
   internal static extern string vtkStringArray_GetValue(HandleRef pThis, long id);

   /// <summary>
   /// Get the data at a particular index.
   /// </summary>
   public string GetValue(long id)
   {
      return vtkStringArray_GetValue(this.GetCppThis(), id);
   }