Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7915663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:31:54+00:00 2026-06-03T14:31:54+00:00

I have never done this before, and while I can’t think of a specific

  • 0

I have never done this before, and while I can’t think of a specific reason that it would break, I’d like to verify that it is valid to use an out variable as follows:

void Main()
{
    var types = new [] { typeof(A), typeof(B) };
    bool b = false;
    var q = from type in types
            from property in type.GetProperties()
            let propertyName = GetName(property, out b)
            select new {
                TypeName = type.Name,
                PropertyName = propertyName,
                PropertyType = property.PropertyType.Name,
                IsNullable = b
            };
    q.Dump();
}

private string GetName(PropertyInfo property, out bool isNullable)
{
    string typeName;
    isNullable = false;
    var type = property.PropertyType;
    if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
    {
        isNullable = true;
        typeName = type.GetGenericArguments().First().Name;
    }
    else
    {
        typeName = property.Name;
    }
    return typeName;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T14:31:57+00:00Added an answer on June 3, 2026 at 2:31 pm

    This will work – provided you actually fully evaluate the query.

    However, the behavior will be very odd, and would be something I would strongly avoid. Since the out parameter is being used directly within the query, the behavior will be fairly normal here (provided you don’t do anything else with this), but that is specific to this use case, not a general “rule” with using out mixed with LINQ.

    The problem is that LINQ’s deferred execution will cause the out parameter to get set, but only when you use the resulting enumerable, not when you declare it. This can cause very unexpected behavior, and lead to difficult to maintain and understand software.

    I would personally just write a separate method, and use it to allow your query to be written as:

    var q = from type in types 
            from property in type.GetProperties() 
            let propertyName = GetName(property)
            let nullable = GetIsNullable(property)
            // ...
    

    This is much more clear, and less prone to mistakes and errors. It will also work with parallelization (ie: PLINQ via .AsParallel()) and other techniques if somebody tries to change this later.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm designing a game server and I have never done anything like this before.
I've never done this before. The website I have just built is the second
I have never done any Windows coding and I would like to give it
I have no clue of where to start on this. I've never done any
I have done XML parsing before but never on a massive scale. If I'm
I have never programmed a gadget for Vista or Seven, but I would like
I have done this many times and have never seen this. I have an
Possible Duplicate: Can someone Explain this jQuery code? I have posted this before, but
I have a thread in an Android application that I would like to wait
I am sure this is a pretty naive question, but I have never done

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.