public override int GetHashCode()
 {
     return((GlobalContext?.GetHashCode() ?? 0) ^ ((LocalContext?.GetHashCode() ?? 0) * 31));
 }
Exemple #2
0
 public override int GetHashCode()
 {
     return(IsNull ? 0 : Module.GetHashCode() ^ unchecked ((int)(31 * (uint)Token)));
 }