TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# Byte and sbyte Types

Use the byte and sbyte number types. Byte requires 8 bits and represents the numbers 0 to 255.
Byte. A byte is 8 bits. The byte type is a compact and efficient type. Byte arrays are useful more often than single bytes. They can store file data. Sometimes bits are even more efficient.Byte Array
Byte versus sbyte. To make matters more complex, a byte has no sign bit, but an sbyte does. We can use an sbyte when negative numbers are needed.
First example. Byte is a value type. When used as a local variable, its storage location is directly contained in the evaluation stack. It can hold any value between 0 and 255.

Here: The program performs a series of accesses to a byte variable on the evaluation stack. The variable is assigned the integer value 5.

Typeof: The typeof operator returns a managed pointer. The expression typeof(byte) is equal to System.Byte.

Typeof, nameof

Default: The default value of byte is equal to zero. If a byte is a class field, we do not need to initialize it to zero.

Default
C# program that uses byte type using System; class Program { static void Main() { // Assign an integer to a byte variable. byte value = 5; Console.WriteLine(value); // The byte type includes a minimum value and maximum value. Console.WriteLine(byte.MinValue); Console.WriteLine(byte.MaxValue); // The byte type has a Type pointer and default value. Console.WriteLine(typeof(byte)); Console.WriteLine(typeof(Byte)); // Uppercase Byte Console.WriteLine(default(byte)); } } Output 5 0 255 System.Byte System.Byte 0
MinValue. The minimum value (byte.MinValue) is equal to zero. And the maximum value (byte.MaxValue) is equal to 255. A value greater than 255 will cause an overflow error.OverflowException
System.Byte information: byte.MinValue = 0 byte.MaxValue = 255 System.SByte information: sbyte.MinValue = -128 sbyte.MaxValue = 127
Convert int to byte. Suppose we want to copy some ints to a byte array, and we want to be sure the ints can all be represented as bytes. We can use a checked block for the cast.Convert

Step 1: We create a byte array. We will be storing ints in the byte array, but do not want any issues with over flow.

Step 2: We loop over a range of numbers. We will be storing these ints inside the byte array.

Step 3: We cast the int to a byte inside a checked statement. If it does not fit, an exception will occur, and we can fix the bug.

Checked
C# program that converts int to byte safely using System; class Program { static void Main() { // Step 1: create empty byte array. byte[] array = new byte[100]; int write = 0; // Step 2: loop over some numbers. for (int i = 20; i < 40; i++) { // Step 3: safely cast int to byte. // ... Store byte in array. checked { array[write++] = (byte)i; } } Console.WriteLine("DONE"); } } Output DONE
Arguments. The C# compiler will treat some numbers as bytes in a program. So it passes the value 10 as a byte value. But it cannot treat 1000 as a byte, so it causes an error.

Tip: The compiler uses a special type of error, a compile-time error, to prevent incorrect programs from ever running.

C# program that uses byte arguments using System; class Program { static void Main() { // The 10 is automatically treated as a byte. Test(10); // This does not compile: // Test(1000); } static void Test(byte value) { Console.WriteLine(value); } } Output 10
Sbyte. This signed byte type represents a small integer that can be negative or positive. It is 8 bits or 1 byte and it stores integers between -128 and 127. It is less commonly used.

Info: This program tests and increments as byte. It prints the size, and shows the minimum and maximum values.

And: The program uses logic to return the Type and TypeCode associated with the sbyte type.

Tip: You can assign and increment sbytes just like any other value type. An unassigned sbyte on the heap will be initialized to 0.

C# program that uses sbyte type using System; class Program { static void Main() { sbyte val = 1; // Local variable. Console.WriteLine("val: {0}", val); Console.WriteLine("sizeof: {0}", sizeof(sbyte)); Console.WriteLine("default: {0}", default(sbyte)); Console.WriteLine("min: {0}", sbyte.MinValue); Console.WriteLine("max: {0}", sbyte.MaxValue); Console.WriteLine("type: {0}", val.GetType()); Console.WriteLine("code: {0}", val.GetTypeCode()); if (val == 1) // Test. { Console.WriteLine("1: {0}", true); } val++; // Increment. Console.WriteLine("val: {0}", val); } } Output val: 1 sizeof: 1 default: 0 min: -128 max: 127 type: System.SByte code: SByte 1: True val: 2
Sbyte discussion. The sbyte type doesn't provide any low-level functionality that the byte type doesn't. But it can improve interoperability with other libraries.

Tip: Because both sbyte and byte represent 8 bits, you can store the bits in either type with no data loss.

Tip 2: If a program uses signed bytes, though, the data will make more sense if you treat one of the bits as a sign bit by using sbyte.

Note: Thanks to Akilram Krishnan for noticing an error in the SByte data at the top of the page.

Char. There are some types that are related to, or similar to, the byte type. In programming languages such as C or C++, the char type is only one byte.

However: In the .NET Framework, the System.Char type is two bytes and requires twice as much storage.

Char

Tip: The ushort type is another small integer type. It is best to use the smallest type that fits your range of data.

short, ushort
BitArray. Bytes have eight bits. But if we only need a true or false value, we can use a single bit. A BitArray can greatly reduce memory usage over a byte array.BitArray
A review. Byte variables can contain the values between 0 and 255. The type is a value type. Sbyte meanwhile can accommodate negative numbers.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf