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 8339431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T04:52:59+00:00 2026-06-09T04:52:59+00:00

If I have a using block, where I create an object (e.g. a FileStream

  • 0

If I have a using block, where I create an object (e.g. a FileStream object), and that object fails to create (returns null, throws an exception, etc.), does the code in the block still execute?

using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) {
    // do stuff with fs here
}
// do more stuff after

If the FileStream constructor were to return null (if the FileStream constructor always returns a valid object, let’s just say for sake of argument that it is possible to return null), would the code inside execute? Or would it skip over the “do stuff with fs here” code?

  • 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-09T04:53:01+00:00Added an answer on June 9, 2026 at 4:53 am
    using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) 
    {
        // do stuff with fs here
    }
    // do more stuff after
    

    is equivalent to:

    FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)
    try
    {
        // do stuff with fs here
    }
    finally
    {
        if (fs != null)
        {
            ((IDisposable)fs).Dispose();
        }
    }
    // do more stuff after
    

    So to answer your question:

    If the FileStream constructor were to return null (if the FileStream
    constructor always returns a valid object, let’s just say for sake of
    argument that it is possible to return null), would the code inside
    execute?

    Yes, it will.

    Obviously everyone familiar with the C# specification knows that a constructor (no matter for which type) can never return null which kind of makes your question a bit unrealistic.

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

Sidebar

Related Questions

I have the following block of jQuery code that I'm using to copy some
I have a UIView object that rotates using CALayer 's transform: // Create uiview
I have a VB6 dll that is trying to create a COM object using
I am using the Mongo Ruby driver and have this block of Ruby code
I'm really annoyed when using block tampered my pre-created object. I have this piece
I have created a simple web browser using c# and I want to block
Accidentally I have been using a @synchronized block with the semaphore self in a
I have some difficulties for using Ruby block, passing in a method. As in
I have just started using the Data Access Application Block from microsoft. There are
I have the following file and I am using an iterator block to parse

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.