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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:57:17+00:00 2026-06-02T14:57:17+00:00

I have the following case: public class GeoLocation { public double Longitude { get;

  • 0

I have the following case:

   public class GeoLocation
   {
       public double Longitude { get; set; }
       public double Latitude { get; set; }
       public string LocationName { get; set; }
   }

    public abstract class Base
    {
        public abstract GeoLocation GeoLocation { get; set; }
    }

    public class Concrete : Base
    {
        public override GeoLocation GeoLocation
        {
            get;
            set;
        }
    }

Now if I create a class Concrete2 which inherits from Base as well and I want the GeoLocation object to have 1 more property:

public string Address{ get; set; }

What is the best way to implement this?

I could create a new class called GeoLocationEx : GeoLocation and place Address property there but then in my Concrete2 object, I would have 2 properties: GeoLocation and GeoLocationEx which I do not like…

I could also make the GeoLocation class partial and extend it with Address property for the Concrete2 class but I am not sure would this be a “proper” use of partial classes.

What could be the best way to do this?

Thanks in advance for your help!

  • 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-06-02T14:57:20+00:00Added an answer on June 2, 2026 at 2:57 pm

    You could probably use generics:

            public class GeoLocation
            {
                public double Longitude { get; set; }
                public double Latitude { get; set; }
                public string LocationName { get; set; }
            }
    
            public class GeoLocationEx : GeoLocation
            {
                public double Address { get; set; }
            }
    
            public abstract class Base<T>
            {
                public abstract T GeoLocation { get; set; }
            }
    
            public class Concrete : Base<GeoLocation>
            {
                public override GeoLocation GeoLocation
                {
                    get;
                    set;
                }
            }
    
            public class Concrete2 : Base<GeoLocationEx>
            {
                public override GeoLocationEx GeoLocation
                {
                    get;
                    set;
                }
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following Model: public class Person { public string Name {get;set;} public
I have the following class: public class Test { public string Text { get;
I have the following entity public class DocumentHistory { public string Name { get;
I have the following code: public class iSito { public const string myVar =
I have the following case: public interface IPerson { .. } public class Person
Suppose I have the following (simplified case): class Color; class IColor { public: virtual
I have the following class: public class VendorClass { public int VendorID { get;
We have the following class public class TemporalData<T> { private T data; private String
I have following two entities public class User { public int UserId { get;
Suppose I have the following classes: public class Test { public static void main(String[]

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.