Property FirstDriver
FirstDriver
The first driver id present in the store. Can be used to iterate over all registered drivers in a for loop.
Declaration
public int FirstDriver { get; }
Property Value
Type | Description |
---|---|
int |
Examples
for(int i= driverStore.FirstDriver; i < driverStore.LastDriver; ++i)
{
ref var instance = ref driverStore.GetDriverInstance(i);
....
}