0
Placeholders for variables
Are placeholders used for all variable types or only for string?
3 Respostas
0
a placeholder can be used for all variable types.
Don't know how to word it in C# as I'm a java learner, but basically
int example;
example=42;
should work, replacing int with correct syntax.
0
string example; is correct
- 1
string I think