Fixed spacing.

This commit is contained in:
chris@chriszimmerman.net 2015-10-15 20:39:37 -04:00
parent 4e0db77a0c
commit 6a173cb28d

View File

@ -395,8 +395,8 @@ on a new line! ""Wow!"", the masses cried";
ref int maxCount, // Pass by reference ref int maxCount, // Pass by reference
out int count) out int count)
{ {
//the argument passed in as 'count' will hold the value of 15 outside of this function //the argument passed in as 'count' will hold the value of 15 outside of this function
count = 15; // out param must be assigned before control leaves the method count = 15; // out param must be assigned before control leaves the method
} }
// GENERICS // GENERICS