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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:04:39+00:00 2026-05-10T22:04:39+00:00

Having a strange issue with some C# code – the Getter method for a

  • 0

Having a strange issue with some C# code – the Getter method for a property is showing up as virtual when not explicitly marked.

The problem exhibits with the DbKey property on this class (code in full):

public class ProcessingContextKey : BusinessEntityKey, IProcessingContextKey {     public ProcessingContextKey()     {         // Nothing     }      public ProcessingContextKey(int dbKey)     {         this.mDbKey = dbKey;     }      public int DbKey     {         get { return this.mDbKey; }         set { this.mDbKey = value; }     }     private int mDbKey;      public override Type GetEntityType()     {         return typeof(IProcessingContextEntity);     } } 

When I use reflection to inspect the DbKey property, I get the following (unexpected) result:

Type t = typeof(ProcessingContextKey); PropertyInfo p = t.GetProperty('DbKey'); bool virtualGetter = p.GetGetMethod(true).IsVirtual; // True! bool virtualSetter = p.GetSetMethod(true).IsVirtual; // False 

Why does virtualGetter get set to True? I expected false, given that the property is neither abstract nor virtual.

For completeness – and for the remote possibilty they are relevant, here are the declarations for BusinessEntityKey, IProcessingContextKey, and IBusinessEntityKey:

public abstract class BusinessEntityKey : IBusinessEntityKey {     public abstract Type GetEntityType(); }  public interface IProcessingContextKey : IBusinessEntityKey  {     int DbKey { get; } }  public interface IBusinessEntityKey {     Type GetEntityType(); } 

Thanks in advance for your help.

Clarification – why does this matter to me?

We’re using NHibernate and traced some issues with lazy loading to properties that were only half overridable – virtual getter but private setter. After fixing these up, we added a Unit test to catch any other places where this could occur:

public void RequirePropertiesToBeCompletelyVirtualOrNot() {     var properties         = typeof(FsisBusinessEntity).Assembly             .GetExportedTypes()             .Where(type => type.IsClass)             .SelectMany(                 type =>                      type.GetProperties(                         BindingFlags.Instance                          | BindingFlags.Public                          | BindingFlags.NonPublic))             .Where(property => property.CanRead                  && property.CanWrite)             .Where(property =>                  property.GetGetMethod(true).IsVirtual                      != property.GetSetMethod(true).IsVirtual);      Assert.That(         properties.Count(),         Is.EqualTo(0),         properties.Aggregate(             'Found : ',              (m, p) => m + string.Format('{0}.{1}; ',                      p.DeclaringType.Name,                      p.Name))); } 

This unit test was failing on the DbKey property mentioned above, and I didn’t understand why.

  • 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-10T22:04:40+00:00Added an answer on May 10, 2026 at 10:04 pm

    It’s virtual because it implements an interface method. Interface implementation methods are always virtual as far as the CLR is concerned.

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

Sidebar

Ask A Question

Stats

  • Questions 113k
  • Answers 113k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer As far as I can tell there really isn't an… May 11, 2026 at 10:09 pm
  • Editorial Team
    Editorial Team added an answer This is not a programming question, though I think I… May 11, 2026 at 10:09 pm
  • Editorial Team
    Editorial Team added an answer 'var' is not a valid variable name - it's a… May 11, 2026 at 10:09 pm

Related Questions

Having a strange issue with some C# code - the Getter method for a
I have started working on some code left behind by previous developers, and I'm
I recently upgraded one of my applications to Rails 2.2.2. Having done that, I've
I'm having issues with a very strange error in some code I wrote. The
I'm trying to create a custom search interface for Apache Solr using Drupal ,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.