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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:59:29+00:00 2026-05-29T09:59:29+00:00

Can i access a method from a instance of the class? Example: class myClass

  • 0

Can i access a method from a instance of the class? Example:

class myClass
{
       private static int n = 0;

       public static myClass()
       { n = 5;}

       public static void Afis()
       { 
              Console.WriteLine(n);
       }

}

and in the void Main:

static void Main()
{
          myClass m = new myClass();
          m.Afis();
}

This gives me: cannon be accessed with an instance referece. Is it because i declared the function static? If that is so when should I use static and when not because in c++ if i declare something with static it just initialize once. Is that the case with c#?

  • 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-29T09:59:29+00:00Added an answer on May 29, 2026 at 9:59 am

    You need to use the class name rather than your variable name to access the static method.

    myClass.Afis();
    

    I’ve attached a link to the Static Classes and Static Class Members programming guide as you’ve asked when you should use them and not use them.

    A little exert from the programming guide:

    A static class can be used as a convenient container for sets of
    methods that just operate on input parameters and do not have to get
    or set any internal instance fields. For example, in the .NET
    Framework Class Library, the static System.Math class contains methods
    that perform mathematical operations, without any requirement to store
    or retrieve data that is unique to a particular instance of the Math
    class.

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

Sidebar

Related Questions

I have a class: class A { public: static A& instance(); ... void setValue(int
I'm wondering how I can access self from a class method. In this instance
How can hibernate can access a private field/method of a java class , for
In the following example, how can the amount_below_limit instance method access the argument to
Hey, I can't seem to access the returned value from a method I called
If I have an instance of an inner class, how can I access the
How can I use a class instance variable as an argument for a method
ArrayBuffer extends ResizableArray which include a protected method, swap. Yet I can't access swap.
Why can't enum's constructor access static fields and methods? This is perfectly valid with
I can access the database either from a .NET program (using ODBC) or through

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.