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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:28:51+00:00 2026-06-09T15:28:51+00:00

This is a simple program I created – one table class, one main class.

  • 0

This is a simple program I created – one table class, one main class. In the table class I created a print method which simply outputs my name. From the main class I am calling the print method but not getting the output.

namespace ConsoleApplication3
{

    class table
    {

        public static void print()
        {
            Console.WriteLine("My name is prithvi-raj chouhan");
        }
    }

    class Program
    {
        public static void Main()
        {
            table t = new table();
            t.print();  // Error the program is not giving output while calling the print method

        }
    }


}
  • 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-09T15:28:52+00:00Added an answer on June 9, 2026 at 3:28 pm

    Since the function you are calling is static.
    Use this syntax

    public static void Main()
             { 
                table.print();     
             } 
    

    Quote from MSDN:-

    A static method, field, property, or event is callable on a class even
    when no instance of the class has been created. If any instances of
    the class are created, they cannot be used to access the static
    member
    . Only one copy of static fields and events exists, and static
    methods and properties can only access static fields and static
    events. Static members are often used to represent data or
    calculations that do not change in response to object state; for
    instance, a math library might contain static methods for calculating
    sine and cosine.

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

Sidebar

Related Questions

I've created this simple program in Eclipse: import java.util.*; import java.io.*; public class prob1
I have created this simple program to learn shared_ptr using namespace std; #define Yes
I've created this simple example program, but this doesn't work. it won't connect. any
This is my simple program in Java: public class Counter extends Thread { public
I've created simple program to test Threads in Java. I'd like it to print
I created this simple textpad program in WPF/VB.NET 2008 that automatically saves the content
I have written this simple C program that changes the rotation file name. Eg:
Please help me understand this. I created a really simple program to try to
I have this simple program that computes salaries for four different worker types. It's
So I was writing this simple program to calculate the day of any date

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.