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

  • Home
  • SEARCH
  • 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 565691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:53:54+00:00 2026-05-13T12:53:54+00:00

In the example below, will the returned pen be destroyed(disposed) or not? ‘ VB’

  • 0

In the example below, will the returned pen be destroyed(disposed) or not?

' VB'
Public Function GetPen() As System.Drawing.Pen
  Using pen As New System.Drawing.Pen(_Color, _Width)
    pen.DashStyle = _DashStyle
    Return pen
  End Using
End Function

// C#
public System.Drawing.Pen GetPen()
{
    using (System.Drawing.Pen pen = new System.Drawing.Pen(_Color, _Width)) 
    {
        pen.DashStyle = _DashStyle;
        return pen;
    }
}

[EDIT]

Just one more precision… Is the Pen object sent to the caller of GetPen by reference or ‘cloned’ like a structure? I know, this is a class, but with GDI objects I am never sure…

Will it be destroyed(disposed) the pen created in GetPen() when the external method will Dispose its pen obtained with GetPen()?

  • 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-05-13T12:53:55+00:00Added an answer on May 13, 2026 at 12:53 pm

    Yes, pen will be disposed. It’s really a bad idea though; you return a pen that’s already disposed!

    What you want to do is to remove the Using statement from GetPen. The Using statement should be used by the GetPen callers:

    Using pen As Pen = GetPen()
        ''// Draw with this pen
    End Using
    

    Or in C#:

    using(Pen pen = GetPen())
    {
        // Draw with this pen
    }
    

    [EDIT]

    Yes, a reference is returned to the calling method, not a copy. That’s why if you dispose of the pen in GetPen, you can’t use that pen in the calling method 😉

    Because of the fact that GetPen and the calling method point to the same Pen object, you just need to call Dispose in the calling method.

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

Sidebar

Ask A Question

Stats

  • Questions 284k
  • Answers 284k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Well, Lisp deals with lists, but the lists are heterogenous,… May 13, 2026 at 4:25 pm
  • Editorial Team
    Editorial Team added an answer Google Talk uses XMPP. Here's a .NET API for this… May 13, 2026 at 4:25 pm
  • Editorial Team
    Editorial Team added an answer Iterators are passed around as [begin,end) pairs, with the end… May 13, 2026 at 4:25 pm

Related Questions

I need to make a rather complex query, and I need help bad. Below
I'm trying to grab data from a MySQL database. Approach 2 - apply/map style
could you please clarify my issue? I have a starting page ListBox1.aspx that calls
I am trying to implement an algorithm in SQL (transact sql) and finding it
Question: Is it possible to (automatically) change the base class of auto-generated domain objects

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.