operator [] method

String? operator [](
  1. ImAddressKey key
)
Gets or sets the Instant Messaging address at the specified key. The key of the Instant Messaging address to get or set.

Implementation

String? operator [](ImAddressKey key) {
  return this.Entries[key]!.ImAddress;
}