예제 #1
0
        private static bool SorteringEtterInntekt(Tribune a, Tribune b)
        {
            bool temp = a.SolgtFor() < b.SolgtFor();

            return(temp);
        }
예제 #2
0
        private static bool SorteringEtterNavn(Tribune a, Tribune b)
        {
            bool temp = string.CompareOrdinal(a.ToString(), b.ToString()) > 0;

            return(temp);
        }