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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:02:06+00:00 2026-05-25T23:02:06+00:00

I have the Parent Class : class clsTestParent { protected int x; public void

  • 0

I have the Parent Class :

class clsTestParent
    {
        protected int x;

        public void Foo()
        {
            x = 10;
        }

    }

I have the Derrived Class as below:

class clsDerivedTest : clsTestParent
    {

            x = 10;
            Foo();

    }

But this is not working as I am getting following two errors:

Invalid token ‘=’ in class, struct, or interface member declaration
Method must have a return type

But the above statements works fine when I try to use them with a method in derived class as below:

 class clsDerivedTest : clsTestParent
    {


        public void myTestMethod()
        {
            x = 10;
            Foo();
        }
}

Why the protected var or methods are only accessible by using derived class methods but not direcly in the class.

I even tried accessing the Protected member by creating object as below:

clsDerivedTest objDerivedTest = new clsDerivedTest();
            objDerivedTest.x = 10;

But again getting error for Protection Level. I have the var as protected so why the object of derived class can not access it?

I need to clear my fundamentals of OOPs but stuck here.

  • 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-25T23:02:06+00:00Added an answer on May 25, 2026 at 11:02 pm

    You know your problem –
    I need to clear my fundamentals of OOPs but stuck here.

    Clear the concept of protected member:

    The protected keyword is a member access modifier. A protected member is accessible from within the class in which it is declared, and from within any class derived from the class that declared this member.

    class A 
    {
       protected int x = 123;
    }
    
    class B : A 
    {
       void F() 
       {
          A a = new A();  
          B b = new B();  
          a.x = 10;   // Error
          b.x = 10;   // OK
       }
    }
    

    Also, it will be good if you go through C# language specification. It will make your understanding clear.

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

Sidebar

Related Questions

I have read a parent Class called MyClass code like this, public class MyClass
I have a parent class, like this: public abstract class Business<T> : IBusiness<T> where
I have a Parent/Child object/mapping as follows: class Parent { int Id; string name;
New to FluentNHibernate =D I have a parent/children classes as follows: public class Parent
I have a base class Parent like this: using System; using System.Collections.Generic; using System.Text;
I have a parent class and child class as mentioned below. Ext.ns(MyUi); MyUi.ParentPanel =
I have a Parent class with two lists of Child classes public class Parent
Well,I have a parent class with a nested class declared in the protected tab
I have a singleton parent class extended by a child class which is not
When I have an immutable parent class A that is NOT final, and another

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.