Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use TryParse to find if the string value is an integer. If the value is an integer then skip foreach loop. Here is my code.

string strValue = "42 "

 if (int.TryParse(trim(strValue) , intVal)) == false
 {
    break;
 }

intVal is a variable of type int?(nullable INT). How can I use Tryparse with nullable int?

Thanks..

share|improve this question
possible duplicate of How to parse a string into a nullable int in C# (.NET 3.5) – Јοеу Aug 2 '10 at 18:43

4 Answers

up vote 20 down vote accepted

You can't do this without using another variable, unfortunately - because the type of out arguments has to match the parameter exactly.

Like Daniel's code, but fixed in terms of the second argument, trimming, and avoiding comparisons with Boolean constants:

int tmp;
if (!int.TryParse(strValue.Trim(), out tmp))
{
    break;
}
intVal = tmp;
share|improve this answer
1  
Congrats on passing 200k! – JonH Aug 2 '10 at 18:45
Thanks Jon Skeet. – nav100 Aug 2 '10 at 18:54
4  
@Downvoter: Care to comment? – Jon Skeet Dec 4 '11 at 12:50
1  
Congrats on passing 500K! :) – Scott Silvi Nov 7 '12 at 19:14
@JonSkeet - strValue cna be null and the Trim() method would result in an exception. Just saying. :) – Shakti Prakash Singh Jun 14 at 12:33
show 1 more comment

Here's an option for a nullable int with TryParse

public int? TryParseNullable(string val)
{
    int outValue;
    return int.TryParse(val, out outValue) ? (int?)outValue : null;
}
share|improve this answer
I like this version since "0" returns 0 and "hello" returns null. In the accepted answer, the distinction is lost. – Jeffrey L Whitledge Aug 2 '10 at 19:47

You can create a helper method to parse a nullable value.

Example Usage:

int? intVal;
if( !NullableInt.TryParse( "42", out intVal ) )
{
    break;
}

Helper Method:

public static class NullableInt
{
    public static bool TryParse( string text, out int? outValue )
    {
        int parsedValue;
        bool success = int.TryParse( text, out parsedValue );
        outValue = success ? (int?)parsedValue : null;
        return success;
    }
}
share|improve this answer
1  
Why would you return a boolean and use an output parameter from this method? Is not returning a null sufficient indication that the parsing failed? – Joel Mueller Aug 2 '10 at 19:02
3  
Just following the TryParse pattern. – Jerod Houghtelling Aug 2 '10 at 19:06

Could not prevent myself to produce a generic version. Usage below.

    public class NullableHelper
    {
        public delegate bool TryDelegate<T>(string s, out T result);

        public static bool TryParseNullable<T>(string s, out T? result, TryDelegate<T> tryDelegate) where T : struct
        {
            if (s == null)
            {
                result = null;
                return true;
            }

            T temp;
            bool success = tryDelegate(s, out temp);
            result = temp;
            return success;
        }

        public static T? ParseNullable<T>(string s, TryDelegate<T> tryDelegate) where T : struct
        {
            if (s == null)
            {
                return null;
            }

            T temp;
            return tryDelegate(s, out temp)
                       ? (T?)temp
                       : null;
        } 
    }


bool? answer = NullableHelper.ParseNullable<bool>(answerAsString, Boolean.TryParse);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.