You can make it in one row by creating comparer in constructor.
SortedDictionary<int, int> dictionaryDescendingOrder = new SortedDictionary<int, int>(Comparer<int>.Create((x, y) => y.CompareTo(x)));