with C# create a console application project that outputs thenumber of bytes in memory that each of the following number typesuse, and the minimum and maximum values they can have: sbyte, byte,short, ushort, int, uint, long, ulong, float, double, anddecimal.
Try formatting the values into a nice-looking table!
More Information: You can always read the documentation,available athttps://docs.microsoft.com/en-us/dotnet/standard/base-types/composite-formattingfor Composite Formatting to learn how to align text in a consoleapplication.
Your output should look something like this:
| Type | Bytes of Memory | Min | Max |
================================================
| sbyte | 1 | -128 | 127 |
| byte | 1 | 0 | 255 |
...and so on for all the types.