SourceForge.net Logo

What Methods are Wrapped

Translation of Basic Types

VTK type.NET type
floatSystem.Single
voidSystem.IntPtr (when void*)
charSystem.Char modopt(IsSignUnspecifiedByte)
intSystem.Int32
shortSystem.Int16
longSystem.Int32 modopt(IsLong)
doubleSystem.Double
vtkIdTypeSystem.Int32 or System.Int64, depending on definition
long longSystem.Int64
__int64System.Int64
signed charSystem.Int8

Translation of Dereferencing

VTK type.NET type
double*System.Double[] (as return value only if hint present)
char*System.String
double []System.Double[]
double [][]System.Double [,]
double&System.Double&
double**not wrapped
double*&not wrapped
double***not wrapped

Special Cases

Reasons Not To Wrap a Method

VTK .NET home