Struct ArrayAlias<T>
Utility class for porting C++ pointer arithmetic code that uses pointer offsets.
Provides array access with a base index offset, emulating C++ pointer behavior.
Assembly: NWH.Aerodynamics.dll
Syntax
public struct ArrayAlias<T>
Type Parameters
| Name |
Description |
| T |
The type of elements in the array.
|
Constructors
|
Edit this page
View Source
ArrayAlias(T[], int)
Declaration
public ArrayAlias(T[] source, int i)
Parameters
| Type |
Name |
Description |
| T[] |
source |
|
| int |
i |
|
Fields
|
Edit this page
View Source
Index
Declaration
Field Value
|
Edit this page
View Source
Source
Declaration
Field Value
Properties
|
Edit this page
View Source
this[int]
Declaration
public T this[int i] { get; set; }
Parameters
| Type |
Name |
Description |
| int |
i |
|
Property Value