AsciiKey.ShiftedCharacterMapping Struct
Definition
Section titled “Definition”A link between two characters, one unshifted and the other shifted.
public readonly struct AsciiKey.ShiftedCharacterMapping : IEquatable<AsciiKey.ShiftedCharacterMapping>Implements IEquatable<AsciiKey.ShiftedCharacterMapping>
Constructors
Section titled “Constructors”ShiftedCharacterMapping(char, char)
Section titled “ShiftedCharacterMapping(char, char)”A link between two characters, one unshifted and the other shifted.
public ShiftedCharacterMapping(char Unshifted, char Shifted)Parameters
Section titled “Parameters”Unshifted char
The character when unshifted.
Shifted char
The character when shifted.
Properties
Section titled “Properties”Unshifted
Section titled “Unshifted”The character when unshifted.
public char Unshifted { get; init; }Shifted
Section titled “Shifted”The character when shifted.
public char Shifted { get; init; }Methods
Section titled “Methods”ToString()
Section titled “ToString()”public override string ToString()Returns
Section titled “Returns”GetHashCode()
Section titled “GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”Equals(object)
Section titled “Equals(object)”public override bool Equals(object obj)Parameters
Section titled “Parameters”obj object
Returns
Section titled “Returns”Equals(ShiftedCharacterMapping)
Section titled “Equals(ShiftedCharacterMapping)”public bool Equals(AsciiKey.ShiftedCharacterMapping other)Parameters
Section titled “Parameters”other AsciiKey.ShiftedCharacterMapping
Returns
Section titled “Returns”Deconstruct(out char, out char)
Section titled “Deconstruct(out char, out char)”public void Deconstruct(out char Unshifted, out char Shifted)Parameters
Section titled “Parameters”Unshifted char
Shifted char