diff --git a/content/The best types to choose when in doubt.md b/content/The best types to choose when in doubt.md new file mode 100644 index 000000000..09213ec51 --- /dev/null +++ b/content/The best types to choose when in doubt.md @@ -0,0 +1,10 @@ +- `int` for most whole numbers +- `decimal` for numbers representing money +- `bool` for true or false values +- `string` for alphanumeric value + +## Links: + +[Choose the right data type - Training | Microsoft Learn](https://learn.microsoft.com/en-us/training/modules/csharp-choose-data-type/6-choose-right-data-type) + +202404171421 \ No newline at end of file