Answers for "c# how to call methods from another class"

C#
1

c# how to call methods from another class

public class AllMethods
{
    public static void Method2()
    {
        // code here
    }
}

class Caller
{
    public static void Main(string[] args)
    {
        AllMethods.Method2();
    }
}
Posted by: Guest on September-30-2020
0

c# how to call methods from another class

// AllMethods.cs
namespace Some.Namespace
{
    public class AllMethods
    {
        public static void Method2()
        {
            // code here
        }
    }
}

// Caller.cs
using static Some.Namespace.AllMethods;

namespace Other.Namespace
{
    class Caller
    {
        public static void Main(string[] args)
        {
            Method2(); // No need to mention AllMethods here
        }
    }
}
Posted by: Guest on September-30-2020

Code answers related to "c# how to call methods from another class"

C# Answers by Framework

Browse Popular Code Answers by Language