I just notice if i pass a value such as 1 in a function parameter it will work if it excepts int, long and i assume the others. However if i do int i = value, it doesnt. I was wondering, what type is it?
|
|
|||
|
|
|
|
||
|
|
|
Integer literals are |
||
|
|
|
|
Take a look at the integer literals specification:
|
||||
|
|
|
You can suffix literal integers to make the type explicit, otherwise the value will be implicitly interpreted as though it were the target type (assuming it doesn't overflow the target).
|
||
|
|
|
The type is determined. If you have this function:
and you call it like this:
Then C# will see this '1' as being a long. |
||
|
|
|
|
As I understand it, the compiler will use type-hinting to determine the type of the literal at compile time. |
||
|
|
