How to get min and max sort value in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        Console.WriteLine(short.MinValue);
        
        Console.WriteLine(short.MaxValue);
    }
}




/*
run:

-32768
32767

*/

 



answered Jun 9, 2021 by avibootz

Related questions

1 answer 158 views
1 answer 148 views
1 answer 181 views
181 views asked Jun 9, 2021 by avibootz
1 answer 141 views
1 answer 142 views
142 views asked Jun 9, 2021 by avibootz
1 answer 190 views
1 answer 134 views
...