BEPUphysics.BroadPhaseEntries.BroadPhaseEntry.GetHashCode C# (CSharp) Method

GetHashCode() public method

Gets the object's hash code.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return hashCode;
        }

Usage Example

 private static bool CameraClipFilter(BroadPhaseEntry test)
 {
     return (GameResources.ActorManager.CameraClippingSimObjects.Contains(test.GetHashCode()));
 }