operator [] method

EmailAddress? operator [](
  1. EmailAddressKey key
)
Gets or sets the e-mail address at the specified key. The key of the e-mail address to get or set.

Implementation

EmailAddress? operator [](EmailAddressKey key) {
  return this.Entries[key]!.EmailAddress;
}