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

  • Home
  • SEARCH
  • 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 170087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:44:45+00:00 2026-05-11T12:44:45+00:00

Can anyone tell me how I would create a MustOverride property using Reflection?

  • 0

Can anyone tell me how I would create a MustOverride property using Reflection?

  • 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. 2026-05-11T12:44:46+00:00Added an answer on May 11, 2026 at 12:44 pm

    Do you mean with Reflection.Emit? If so, you use TypeBuilder.DefineMethod, with MethodAttributes.Abstract.

    Here’s an example; in Bar.Method is abstract; Bar2.Method overrides it.

        AssemblyName an = new AssemblyName('Foo');     var asm = AppDomain.CurrentDomain.DefineDynamicAssembly(an, AssemblyBuilderAccess.Run);     var module = asm.DefineDynamicModule('Foo');     var type = module.DefineType('Bar', TypeAttributes.Abstract | TypeAttributes.Class | TypeAttributes.AnsiClass);     var method = type.DefineMethod('Method', MethodAttributes.Abstract | MethodAttributes.Public | MethodAttributes.Virtual,         CallingConventions.HasThis, typeof(int), Type.EmptyTypes);      var final = type.CreateType();      type = module.DefineType('Bar2', TypeAttributes.Sealed | TypeAttributes.Class | TypeAttributes.AnsiClass, final);     var method2 = type.DefineMethod('Bar', MethodAttributes.Public | MethodAttributes.Virtual,         CallingConventions.HasThis, typeof(int), Type.EmptyTypes);     var il = method2.GetILGenerator();     il.Emit(OpCodes.Ldc_I4_4);     il.Emit(OpCodes.Ret);     type.DefineMethodOverride(method2, method);      var concrete = type.CreateType();     object obj = Activator.CreateInstance(concrete);     int result = (int) concrete.GetMethod('Bar').Invoke(obj, null); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone tell me why this would generate a syntax error in Safari and
Frankly, I'm flummoxed. Can anyone tell me why I would get a failure message
Can anyone tell me how to write and run msbuild by using VS 2005?
Can anyone tell me if it is possible to create and add data to
Can anyone tell me how to create an extraction rule that will allow me
Can anyone tell me whether I can create a custom active security tokebn service
can anyone tell me (code sample woudl be awesome) how to get the the
Can anyone tell me whether Helvetica is a browser base font? If so, it
Can anyone tell me why ActionScript 3, a statically typed language, doesn't have generics?
Can anyone tell me what's wrong with this code? class Dataset < ActiveRecord::Base has_many

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.