
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Byte Struct in C#
Byte Struct in C# represents an 8-bit unsigned integer. Following are the fields −
Sr.no | Field & Description |
---|---|
1 |
MaxValue Represents the largest possible value of a Byte. This field is constant. |
2 |
MinValue Represents the smallest possible value of a Byte. This field is constant. |
Following are some of the methods −
Sr.no | Field & Description |
---|---|
1 |
CompareTo(Byte) Compares this instance to a specified 8-bit unsigned integer and returns an indication of their relative values. |
2 |
CompareTo(Object) Compares this instance to a specified object and returns an indication of their relative values. |
3 |
Equals(Byte) Returns a value indicating whether this instance and a specified Byte object represent the same value. |
4 |
Equals(Object) Returns a value indicating whether this instance is equal to a specified object. |
5 |
GetHashCode() Returns the hash code for this instance. |
6 |
GetTypeCode(). Returns the TypeCode for value type Byte. |
Example
using System; public class Demo { public static void Main() { string str = "186"; try { byte val = Byte.Parse(str); Console.WriteLine(val); } catch (OverflowException) { Console.WriteLine("Out of range of a byte.", str); } catch (FormatException) { Console.WriteLine("Out of range of a byte.", str); } } }
Output
This will produce the following output −
186
Example
Let us see another example −
using System; public class Demo { public static void Main() { byte[] arr = { 0, 10, 50, 90, 100, 150 }; foreach (byte b in arr) { Console.Write(" ", b.ToString()); Console.Write(b.ToString("D4") + " "); Console.WriteLine(b.ToString("X4")); } } }
Output
This will produce the following output −
0000 0000 0010 000A 0050 0032 0090 005A 0100 0064 0150 0096
Advertisements