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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:28:42+00:00 2026-05-24T21:28:42+00:00

I have a property that returns System.Numerics.BigInteger . When I casting the property to

  • 0

I have a property that returns System.Numerics.BigInteger. When I casting the property to int, I got this error.

Cannot convert type 'System.Numerics.BigInteger' to 'int'

How can I convert int to/from System.Numerics.BigInteger in C#?

  • 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-24T21:28:43+00:00Added an answer on May 24, 2026 at 9:28 pm

    The conversion from BigInteger to Int32 is explicit, so just assigning a BigInteger variable/property to an int variable doesn’t work:

    BigInteger big = ...
    
    int result = big;           // compiler error:
                                //   "Cannot implicitly convert type
                                //    'System.Numerics.BigInteger' to 'int'.
                                //    An explicit conversion exists (are you
                                //    missing a cast?)"
    

    This works (although it might throw an exception at runtime if the value is too large to fit in the int variable):

    BigInteger big = ...
    
    int result = (int)big;      // works
    

    Note that, if the BigInteger value is boxed in an object, you cannot unbox it and convert it to int at the same time:

    BigInteger original = ...;
    
    object obj = original;      // box value
    
    int result = (int)obj;      // runtime error
                                //   "Specified cast is not valid."
    

    This works:

    BigInteger original = ...;
    
    object obj = original;            // box value
    
    BigInteger big = (BigInteger)obj; // unbox value
    
    int result = (int)big;            // works
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a request that returns a JSON object with a single property which
I have a property called IsSecureConnection that is part of my object's interface. This
So, a System.Windows.Forms.Control has a Controls property of type Control.ControlCollection . I have a
I have a bunch of classes that each have a property called Sequence. This
I Have a controller that returns a viewModel. That viewModel has a property called
I have a Windows.Forms component which has a mySize property that returns a Size
I know this has been addressed before but I have service that returns a
If I have a property that I want to let inheritors write to, but
If you have a Property that gets and sets to an instance variable then
So I have an object that implements INotifyPropertyChanged, and I have a property that

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.