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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:31:26+00:00 2026-05-27T02:31:26+00:00

Is it somehow possible to extend a type, wich is defined in another assembly,

  • 0

Is it somehow possible to extend a type, wich is defined in another assembly, to add an attribute on one of its properties?

Exemple I have in assembly FooBar:

public class Foo
{
   public string Bar { get; set; }
}

But in my UI assembly, I want to pass this type to a third party tool, and for this third party tool to work correctly I need the Bar property to have a specific attribute. This attribute is defined in the third party assembly, and I don’t want a reference to this assembly in my FooBar assembly, since FooBar contains my domain an this is a UI tool.

  • 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-27T02:31:26+00:00Added an answer on May 27, 2026 at 2:31 am

    You can’t, if the thirdy-party tool uses standard reflection to get the attributes for your type.

    You can, if the third-party tool uses the TypeDescriptor API to get the attributes for your type.

    Sample code for the type descriptor case:

    public class Foo
    {
        public string Bar { get; set; }
    }
    
    class FooMetadata
    {
        [Display(Name = "Bar")]
        public string Bar { get; set; }
    }
    
    static void Main(string[] args)
    {
        PropertyDescriptorCollection properties;
    
        AssociatedMetadataTypeTypeDescriptionProvider typeDescriptionProvider;
    
        properties = TypeDescriptor.GetProperties(typeof(Foo));
        Console.WriteLine(properties[0].Attributes.Count); // Prints X
    
        typeDescriptionProvider = new AssociatedMetadataTypeTypeDescriptionProvider(
            typeof(Foo),
            typeof(FooMetadata));
    
        TypeDescriptor.AddProviderTransparent(typeDescriptionProvider, typeof(Foo));
    
        properties = TypeDescriptor.GetProperties(typeof(Foo));
        Console.WriteLine(properties[0].Attributes.Count); // Prints X+1
    }
    

    If you run this code you’ll see that last console write prints plus one attribute because the Display attribute is now also being considered.

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

Sidebar

Related Questions

If a class defined an annotation, is it somehow possible to force its subclass
Is it somehow possible to customize or subclass System.Windows.Forms.ColorDialog to add a few buttons?
while debugging a C++ program with GDB, is it possible somehow to add comments
I have some types that extend a common type, and these are my models.
Is it somehow possible to send a function to another function for it to
Is that somehow possible to access one datastore? Or access one app from different
Possible Duplicate: Enum “Inheritance” I have a number of classes which extend an abstract
is it somehow possible to call a rails function or to access a rails
Is it somehow possible on Swing to set a TitledBorder transparent so that a
Is it somehow possible to use the 'With' keyword on an existing object? I

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.