Delegate NetworkVariableSerialization<T>.EqualsDelegate
A callback to check if two values are equal.
Namespace: Unity.Netcode
Assembly: Unity.Netcode.Runtime.dll
Syntax
public delegate bool NetworkVariableSerialization<T>.EqualsDelegate(ref T a, ref T b)
  Parameters
| Type | Name | Description | 
|---|---|---|
| T | a | The first value to compare.  | 
      
| T | b | The second value to compare.  | 
      
Returns
| Type | Description | 
|---|---|
| bool | True if the values are equal; otherwise, false.  |