Statement.GetHashCode Method
- Updated2023-02-21
- 2 minute(s) read
Serves as a hash function for a Statement object. The hash code this method returns is suitable for use in hashing algorithms and data structures like a hash table.
This is an abstract declaration only. Derived classes must implement the correct GetHashCode comparison for that class.
Namespace:
NationalInstruments.VeriStand.RealTimeSequenceDefinitionApiAssembly: NationalInstruments.VeriStand.RealTimeSequenceDefinitionApi (in NationalInstruments.VeriStand.RealTimeSequenceDefinitionApi.dll) Version: 2013.0.0.0 (2013.0.0.0)
Visual Basic (Declaration) |
---|
Public MustOverride Function GetHashCode As Integer |
C# |
---|
public abstract int GetHashCode() |
Visual C++ |
---|
public: virtual int GetHashCode() abstract override |
Return Value
A hash code for the current Block object.
Remarks
Overrides Object.GetHashCode.