Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to use the sbyte type in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            sbyte sb = 15; 

            Console.WriteLine(sb);

            Console.WriteLine(sb == 2);
            Console.WriteLine(sb == 15);

            Console.WriteLine(sizeof(sbyte));
            Console.WriteLine(default(sbyte));

            Console.WriteLine(sb.GetType());
            Console.WriteLine(sb.GetTypeCode());

            Console.WriteLine(sbyte.MinValue);
            Console.WriteLine(sbyte.MaxValue);
        }
    }
}

/*
run:
   
15
False
True
1
0
System.SByte
SByte
-128
127

*/

 



answered Jan 16, 2017 by avibootz

Related questions

1 answer 135 views
1 answer 181 views
1 answer 92 views
92 views asked Nov 16, 2021 by avibootz
1 answer 141 views
1 answer 130 views
130 views asked Nov 15, 2021 by avibootz
1 answer 192 views
1 answer 148 views
...