Skip to content

AsciiKey.ShiftedCharacterMapping Struct

A link between two characters, one unshifted and the other shifted.

C#
public readonly struct AsciiKey.ShiftedCharacterMapping : IEquatable<AsciiKey.ShiftedCharacterMapping>

Implements IEquatable<AsciiKey.ShiftedCharacterMapping>

A link between two characters, one unshifted and the other shifted.

C#
public ShiftedCharacterMapping(char Unshifted, char Shifted)

Unshifted char
The character when unshifted.

Shifted char
The character when shifted.

The character when unshifted.

C#
public char Unshifted { get; init; }

The character when shifted.

C#
public char Shifted { get; init; }
C#
public override string ToString()

string

C#
public override int GetHashCode()

int

C#
public override bool Equals(object obj)

obj object

bool

C#
public bool Equals(AsciiKey.ShiftedCharacterMapping other)

other AsciiKey.ShiftedCharacterMapping

bool

C#
public void Deconstruct(out char Unshifted, out char Shifted)

Unshifted char

Shifted char