remove unused swap method
This commit is contained in:
parent
b4fea798c7
commit
20412e605f
1 changed files with 0 additions and 1 deletions
|
@ -2,7 +2,6 @@
|
|||
{
|
||||
static class EndianSwap
|
||||
{
|
||||
public static short Swap16(short Value) => (short) (((Value >> 8) & 0xff) | (Value << 8));
|
||||
public static ushort Swap16(ushort Value) => (ushort)(((Value >> 8) & 0xff) | (Value << 8));
|
||||
|
||||
public static int Swap32(int Value)
|
||||
|
|
Loading…
Add table
Reference in a new issue