So, one function I just love in PHP is print_r($variable)... basically what it does is dump the variable to the screen in some easy way to read.... so if you have an array with the values 1 2 3 for example it'd print
And now that I'm getting into C# I'd like to know if I can find something similar to help me along during different steps.
Thanks for any information
Code:
array{
0 => 1
1 => 2
2 => 3
}
And now that I'm getting into C# I'd like to know if I can find something similar to help me along during different steps.
Thanks for any information