Difference between byte vs Byte data types in C# [duplicate]

I noticed that in C# there are both a byte and Byte data type. They both say they are of type struct System.Byte and represent an 8-digit unsigned integer.

So I am curious as to what the difference if any is between the two, and why you would use one over the other.

Thanks!

8 Answers
8

Leave a Comment