InterviewSolution
Saved Bookmarks
| 1. |
I Was Trying To Use An "out Int" Parameter In One Of My Functions. How Should I Declare The Variable That I Am Passing To It? |
|
Answer» You should DECLARE the variable as an int, but when you pass it in you MUST specify it as 'out', like the FOLLOWING: You should declare the variable as an int, but when you pass it in you must specify it as 'out', like the following: |
|