Struct SimDevice
Namespace: Hal
Assembly: FRC.Hal.dll
Syntax
public struct SimDevice : IDisposable, IEquatable<SimDevice>
Constructors
|
Improve this Doc
View Source
SimDevice(Int32)
Declaration
public SimDevice(int handle)
Parameters
Type |
Name |
Description |
Int32 |
handle |
|
Properties
|
Improve this Doc
View Source
NativeHandle
Declaration
public int NativeHandle { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(String)
Declaration
public static SimDevice Create(string name)
Parameters
Type |
Name |
Description |
String |
name |
|
Returns
|
Improve this Doc
View Source
Create(String, Int32)
Declaration
public static SimDevice Create(string name, int index)
Parameters
Returns
|
Improve this Doc
View Source
Create(String, Int32, Int32)
Declaration
public static SimDevice Create(string name, int index, int channel)
Parameters
Returns
|
Improve this Doc
View Source
Dispose()
Declaration
|
Improve this Doc
View Source
Equals(SimDevice)
Declaration
public bool Equals(SimDevice other)
Parameters
Returns
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object other)
Parameters
Type |
Name |
Description |
Object |
other |
|
Returns
Overrides
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Operators
|
Improve this Doc
View Source
Equality(SimDevice, SimDevice)
Declaration
public static bool operator ==(SimDevice x, SimDevice y)
Parameters
Returns
|
Improve this Doc
View Source
False(SimDevice)
Declaration
public static bool operator false (SimDevice device)
Parameters
Returns
|
Improve this Doc
View Source
Inequality(SimDevice, SimDevice)
Declaration
public static bool operator !=(SimDevice x, SimDevice y)
Parameters
Returns
|
Improve this Doc
View Source
True(SimDevice)
Declaration
public static bool operator true (SimDevice device)
Parameters
Returns
Implements