VTK type | .NET type |
---|---|
float | System.Single |
void | System.IntPtr (when void*) |
char | System.Char modopt(IsSignUnspecifiedByte) |
int | System.Int32 |
short | System.Int16 |
long | System.Int32 modopt(IsLong) |
double | System.Double |
vtkIdType | System.Int32 or System.Int64, depending on definition |
long long | System.Int64 |
__int64 | System.Int64 |
signed char | System.Int8 |
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 |