Home » C#.Net

sbyte keyword in C#

C# sbyte keyword: Here, we are going to learn about the sbyte keyword in C#, what is sbyte keyword, how to use it in C#?
Submitted by IncludeHelp, on March 06, 2019

C# sbyte keyword

In C#, sbyte is a keyword which is used to declare a variable that can store a signed value between the range of -128 to +127. sbyte keyword is an alias of System.SByte.

It occupies 1 byte (8 bits) in the memory.

Syntax:

    sbyte variable_name = value;

It can store the value between the range of -128 to +127.

C# code to demonstrate example of sbyte keyword

Here, we are declaring a sbyte variable num, initializing it with the value -120 and printing its value, type and size of a sbyte type variable.

using System;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            //char variable declaration
            sbyte num = -120;

            //printing value
            Console.WriteLine("num: " + num);
            //printing type of variable
            Console.WriteLine("Type of num: " + num.GetType());
            //printing size of a decimal 
            Console.WriteLine("Size of a sbyte variable: " + sizeof(sbyte));

            //hit ENTER to exit
            Console.ReadLine();
        }
    }
}

Output

num: -120
Type of num: System.SByte
Size of a sbyte variable: 1
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.