Skip to content

Instantly share code, notes, and snippets.

@hasokeric
Created December 17, 2018 11:42
Show Gist options
  • Save hasokeric/9b4f0e84432e088ca293f95000bdda96 to your computer and use it in GitHub Desktop.
Save hasokeric/9b4f0e84432e088ca293f95000bdda96 to your computer and use it in GitHub Desktop.
AvoidSubStringNullRefEx.cs
string partNum = "PART123456";
string partSeg = partNum.Length >= 9 ? partNum.Substring(0, 9) : partNum.Substring(0, partNum.Length);
faComment = ((FirstArt.CommentText.Length > 37) ? FirstArt.CommentText.SubString(0, 37) : FirstArt.CommentText);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment