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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:56:55+00:00 2026-05-12T19:56:55+00:00

I have an object of type FSharpOption, but I don’t know it’s depth. It

  • 0

I have an object of type FSharpOption, but I don’t know it’s depth. It could be any of…

FSharpOption<Int32>
FSharpOption<FSharpOption<Int32>>
FSharpOption<FSharpOption<FSharpOption<Int32>>>
FSharpOption<FSharpOption<FSharpOption<FSharpOption<Int32>>>>
etc.

Edit: Also note that it isn’t necessarily an Int32. It could be any underlying type.

How do I get at the underling value using VB or 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-12T19:56:55+00:00Added an answer on May 12, 2026 at 7:56 pm

    That may not be version independent… how about this minor variation with no dependency on FSharp.Core?

    static object OptionGetUnderlyingValue(object obj)
    {
        while (obj != null && obj.GetType().Name == "FSharpOption`1")
        {
            PropertyInfo pi = obj.GetType().GetProperty("Value");
            Contract.Assert(pi != null);
            obj = pi.GetValue(obj, null);
        }
    
        return obj;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object type with no-args constructor, but when I specify it as
If you know an object type, and you have the object's handle (hwnd), is
I have object of type WebClient which successfully connects to web server. But when
I have object A which in turn has a property of type Object B
I have 2 collections of objects. the objects have an object-type 'key' property (I
I have a object of type ICollection<string> . What is the best way to
I have an object of type IMAGE which holds image. I wanted to display
I have an object of type list from which I wish to use to
I have an object of type Hash that I want to loop over via
I have an object of type X509Certificate2 and want to display it to the

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.