How to find min and max values of sbyte in C#

1 Answer

0 votes
using System;
 
class Program
{
    static void Main()
    {
        Console.WriteLine(sbyte.MinValue);
        Console.WriteLine(sbyte.MaxValue);
    }
}
  
  
/*
run:
  
-128
127
  
*/

 



answered Sep 12, 2020 by avibootz

Related questions

1 answer 160 views
1 answer 205 views
1 answer 163 views
163 views asked Sep 12, 2020 by avibootz
1 answer 174 views
174 views asked Sep 12, 2020 by avibootz
1 answer 126 views
1 answer 111 views
...