Just curious if I can substring string only when String.Length is greater than or equal to 20 without using If or Try catch ?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ummh what have you tried? Just check beforehand:
If you really don’t want to use an if statement you could use Linq which just obfuscates the solution though and is less performant in this case:
Or technically this doesn’t use an
ifstatement either: