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

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Class Interface » Class MethodScreenshots 
Overloading Classes
Overloading Classes

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: [email protected]
 * 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.