Difference between Decimal and decimal

前端 未结 5 1730
野性不改
野性不改 2021-01-01 10:39

If someone could explain to me the difference between Decimal and decimal in C# that would be great.

In a more general fashion, what is the difference between the lo

5条回答
  •  时光说笑
    2021-01-01 11:06

    They are the same. The type decimal is an alias for System.Decimal.

    So basically decimal is the same thing as Decimal. It's down to user's preference which one to use but most prefer to use int and string as they are easier to type and more familiar among C++ programmers.

提交回复
热议问题