Struct AsciiKey.ShiftedCharacterMapping
A link between two characters, one unshifted and the other shifted.
Assembly: SadConsole.dll
public readonly struct AsciiKey.ShiftedCharacterMapping : IEquatable<AsciiKey.ShiftedCharacterMapping>
Constructors
A link between two characters, one unshifted and the other shifted.
Declaration
public ShiftedCharacterMapping(char Unshifted, char Shifted)
Parameters
Type |
Name |
Description |
char |
Unshifted |
The character when unshifted.
|
char |
Shifted |
The character when shifted.
|
Properties
The character when shifted.
Declaration
public char Shifted { get; init; }
Property Value
The character when unshifted.
Declaration
public char Unshifted { get; init; }
Property Value
Methods
Declaration
public void Deconstruct(out char Unshifted, out char Shifted)
Parameters
Type |
Name |
Description |
char |
Unshifted |
|
char |
Shifted |
|
Declaration
public bool Equals(AsciiKey.ShiftedCharacterMapping other)
Parameters
Returns
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
Declaration
public override int GetHashCode()
Returns
Overrides
Declaration
public override string ToString()
Returns
Overrides
Operators
Declaration
public static bool operator ==(AsciiKey.ShiftedCharacterMapping left, AsciiKey.ShiftedCharacterMapping right)
Parameters
Returns
Declaration
public static bool operator !=(AsciiKey.ShiftedCharacterMapping left, AsciiKey.ShiftedCharacterMapping right)
Parameters
Returns
Implements