In what way are each intended to be used? Also the differences between them?
For an example:
sbyte myByte = 1;
SByte myByte = 1;
In what way are each intended to be used? Also the differences between them?
For an example:
sbyte myByte = 1;
SByte myByte = 1;
sbyte is an alias of System.SByte. There is no difference between the two. The guidelines state that it is recommended to use the alias sbyte instead of SByte. You can see the MSDN documentation here: https://msdn.microsoft.com/en-us/library/d86he86x.aspx