Overloading Classes : Class Method « Class Interface « C# / C Sharp






Overloading Classes

Overloading Classes
/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_5___Building_Your_Own_Classes
{
  public class OverloadingClasses
  {
    static void Main(string[] args)
    {
      A MyA = new A();

      MyA.Display();
      MyA.Display(10);
    }
  }
  class A
  {
    public void Display()
    {
      Console.WriteLine("No Params Display Method");
    }
    public void Display(int A)
    {
      Console.WriteLine("Overloaded Display {0}", A);
    }
  }
}

           
       








Related examples in the same category

1.Method Attributes
2.Define methods that return a value and accept parametersDefine methods that return a value and accept parameters
3.Class a class methodClass a class method
4.Call class methods 2Call class methods 2
5.Method overloading testMethod overloading test
6.Add a method to BuildingAdd a method to Building
7.A simple example that uses a parameterA simple example that uses a parameter
8.Add a method that takes two argumentsAdd a method that takes two arguments
9.Use a class factoryUse a class factory
10.Return an arrayReturn an array
11.Demonstrate method overloadingDemonstrate method overloading
12.Automatic type conversions can affect overloaded method resolutionAutomatic type conversions can affect 
   overloaded method resolution
13.A simple example of recursionA simple example of recursion
14.C# Classes Member FunctionsC# Classes Member Functions
15.change field value in a method