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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T12:02:24+00:00 2026-06-04T12:02:24+00:00

It is possible to assign default values to normal arguments to a function, such

  • 0

It is possible to assign default values to normal arguments to a function, such that

bool SomeFunction(int arg1 = 3, int arg2 = 4)

can be called in any of the following ways.

bool val = SomeFunction();
bool val = SomeFunction(6);
bool val = SomeFunction(6,8);

Is there a way of doing something similar (other than just creating an unused variable) such that

bool SomeOtherFunction(int arg1, out int argOut)

can be called in either of the following ways?

int outarg;
bool val = SomeOtherFunction(4,outarg);
bool val = SomeOtherFunction(4);

Is this at all possible, or if not, what are good workarounds? Thanks.

  • 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-04T12:02:25+00:00Added an answer on June 4, 2026 at 12:02 pm

    A good workaround is:

    bool SomeOtherFunction(int arg1, out int argOut){ ... }
    
    bool SomeOtherFunction(int arg1)
    {
        int dummyArgOut;
        return SomeOtherFunction(arg1, dummyArgOut);
    }
    

    I’d even say its the best workaround.

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

Sidebar

Related Questions

Is it possible to assign php array in MySQL IN() function? for example, $numbers
Is it possible to assign by reference? I know that ref has to be
Possible Duplicate: Create shortcut to console.log() In javascript we can easy assign functions to
Is it possible to do template layouts which you can assign to all your
it is possible,i ues <% %> for assign QueryString ID,to src img tag such
Possible Duplicate: default value for a static property I am able to assign default
Now that I can successfully iterate through my loop of possible valid toppings I
Is it possible to assign a widget width to half the available screen width,
is it possible to assign a value to a ServerVariable(Something) using the code? instead
Is it possible to assign the value a git command like git rev-list -n

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.