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 148 views
1 answer 195 views
1 answer 157 views
157 views asked Sep 12, 2020 by avibootz
1 answer 167 views
167 views asked Sep 12, 2020 by avibootz
1 answer 116 views
1 answer 100 views
...