operator == method

bool operator ==(
  1. Object other
)
override

Performs a case insensitive comparison on the UUIDs contained in two Guid objects. Comparison is by value and not by reference.

Implementation

bool operator ==(other) {
  return this.value.toLowerCase() == other.toString().toLowerCase();
}