private static int CompareLongs()

in code/KustoCopyConsole/Kusto/KustoPriority.cs [66:75]


        private static int CompareLongs(long? a, long? b)
        {
            return (a == null && b == null)
                ? 0
                : (a == null && b != null)
                ? -1
                : (a != null && b == null)
                ? 1
                : a!.Value.CompareTo(b!.Value);
        }