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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:58:15+00:00 2026-05-23T21:58:15+00:00

Lets say I have a class like this: public class Foo { public Foo

  • 0

Lets say I have a class like this:

public class Foo
{
    public Foo {}

    public int Titi { get; set; }
    public int Toto { get; set; }
    public int Tata { get; set; }
}

I can initialize a new instance like this:

var inst = new Foo { Titi = 12, Toto = 42, Tata = 421 };

But how can I create correct instance descriptor that performs same initialization as above?

public class FooConverter : TypeConverter
{
    // ...

    public override object ConvertTo(ITypeDescriptorContext context, 
                                     CultureInfo culture, 
                                     object value, 
                                     Type destinationType)
    {
        if (destinationType == typeof(InstanceDescriptor) && value is Foo)
        {
            // Incorrect example because properties wont 
            // be initialized to 12, 42 and 421
            var ctor = typeof(Foo).GetConstructor(Type.EmptyTypes); 

            return new InstanceDescriptor(ctor, null);
         }

         // ...
    }
}

NB1: I’m asking this because I want to create a TypeConverter for ‘Foo’ class and need to provide convertion to ‘InstanceDescriptor’

NB2: Yes, I can add a constructor to Foo class that takes 3 arguments, but would like to avoid this and also would like to know which “construction description” corresponds to above sample.

  • 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-23T21:58:15+00:00Added an answer on May 23, 2026 at 9:58 pm

    I don’t know what you are trying to use but it seem that InstanceDescriptor don’t only take constructors so you could do something like this :

    public static class FooSerialization
    {
        public static Foo CreateDesignFooInstance()
        {
            return new Foo { Titi = 12, Toto = 42, Tata = 421 };
        }
    }
    

    And then :

    var m = typeof(FooSerialization).GetMethod("CreateDesignFooInstance", 
        BindingFlags.Static | BindingFlags.Public);
    var desc = new InstanceDescriptor(m, null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say I have a set of model classes like this: public class Person
Lets say I have the following: public class MyObject { [Bindable] public var foo:int
Lets say I have a class like this in Java: public class Function {
Let's say I have this program: class Foo { public: unsigned int bar ()
Lets say i have a class like this class book { public $title; public
Lets say I have a controller class like this. public class InStorePickupController : Controller
Let's say I have data structures that're something like this: Public Class AttendenceRecord Public
Let's say I have a model like this class Foo(db.Model): id = db.StringProperty() bar
Let's say I have a class: class Foo { public string Bar { get
Let's say I have a simple POJO class: public void Foo { public int

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.