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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:01:15+00:00 2026-06-07T01:01:15+00:00

So I have a simple method called Invert : public static void Invert(this bool

  • 0

So I have a simple method called Invert:

public static void Invert(this bool value)
{
    value = !value;
}

It is inside of a static class in a .dll file. Now when I go to a new Winforms project, I add the .dll as a reference and everything is good so far. Now when I do this:

bool test = true;
test.Invert();

I get no errors, but when I do:

MessageBox.Show(test.ToString());

It outputs true, as if nothing has changed. I am not sure if it because of what I am doing in the method or something else. But if I go:

MessageBox.Show((!test).ToString());

It outputs false.

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-07T01:01:16+00:00Added an answer on June 7, 2026 at 1:01 am

    That’s working correctly. Because bool is a value type, it’s passed as a value and the original variable (test) is not ever being changed.

    Instead you should do something like:

    public static bool Invert(this bool value) 
    { 
        return !value; 
    } 
    

    However, creating a method that does what the language does itself is a bit of a waste of time.

    I don’t think extension methods will let you take a this parameter by reference, so you would have to use a regular static method, and call it the long way:

    public static bool Invert(ref bool value) { value = !value; }
    
    BooleanHelpers.Invert(ref test);
    

    In the end, it’s going to be a lot cleaner and easier (not to mention more obvious to other developers) to just do it this way:

    test = !test;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have a very simple class that has a method called getThumbUrl() but
Say I have this simple method: public IEnumerable<uint> GetNumbers() { uint n = 0;
Hi I have this simple method which gets triggered when i click inside a
I have a fairly simple method in a class in a separate file, which
I have this simple code: public void Run() { var invokerThread = new Thread(new
I have ListBox called lstProductGroups. On a simple Windows Form, a method called GetGroups
I have a simple method (running on Tomcat 6.0.35) that looks like so: @RequestMapping(value
I have a simple update method in my manager class and I need to
I have a simple recursive method written in both Java and C# Java public
I have a simple service with a single operational contract method called Sum [OperationContact]

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.