C# Difference between byte and Byte
-
Hi, Can You please Tell me what is the difference between 'byte' and 'Byte' as a datatype in C# thank you.
No difference really, just different names for the same thing. 'byte' is just short for System.Byte. It's a primitive so has shortened form.
Regards, Rob Philpott.
-
No difference really, just different names for the same thing. 'byte' is just short for System.Byte. It's a primitive so has shortened form.
Regards, Rob Philpott.
-
Hi, Can You please Tell me what is the difference between 'byte' and 'Byte' as a datatype in C# thank you.
Byte
is a wrapper to primitive typebyte
. byte is just an alias ofSystem.Byte
. This will help you I think : http://mctscertification.blogspot.com/2008/05/what-is-difference-between-byte-and.html[^] :rose:Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Hi, Can You please Tell me what is the difference between 'byte' and 'Byte' as a datatype in C# thank you.
None. One's a synonym for the other.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Byte
is a wrapper to primitive typebyte
. byte is just an alias ofSystem.Byte
. This will help you I think : http://mctscertification.blogspot.com/2008/05/what-is-difference-between-byte-and.html[^] :rose:Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Byte
is a wrapper to primitive typebyte
. byte is just an alias ofSystem.Byte
. This will help you I think : http://mctscertification.blogspot.com/2008/05/what-is-difference-between-byte-and.html[^] :rose:Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptYou are confusing with java. in C# byte == Byte string == String ... ... .. ..
-
Hi, Can You please Tell me what is the difference between 'byte' and 'Byte' as a datatype in C# thank you.
The only difference is when defining an enumerated type; byte and the other aliases are allowed, but System.Byte etc. are not.