Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
318 views
in Technique[技术] by (71.8m points)

c# - Elegant TryParse

I feel that every time I use TryParse that it results in somewhat ugly code. Mainly I am using it this way:

int value;
if (!int.TryParse(someStringValue, out value))
{
    value = 0;
}

Is there some more elegant solution for parsing all basic data types, to be specific is there a way to do fail safe parsing in one line? By fail safe I assume setting default value if parsing fails without exception.

By the way, this is for cases where I must do some action even if parsing fails, just using the default value.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This is valid and you may prefer it if you have a liking for single-liners:

int i = int.TryParse(s, out i) ? i : 42;

This sets the value of i to 42 if it cannot parse the string s, otherwise it sets i = i.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...