Created
January 24, 2013 22:53
-
-
Save natelowry/4629096 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int thisIsAVariable = 3; | |
public double ReturnSomething(double[] arr){ | |
arr[0] = 1.0f; | |
var myVar = string.Empty; | |
return arr[2]; | |
} |
Shouldn't you check to see that arr is not_null before using it?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a comment about this post...