Call class methods 2 : Class Method « Class Interface « C# / C Sharp






Call class methods 2

Call class methods 2
/*
Learning C# 
by Jesse Liberty

Publisher: O'Reilly 
ISBN: 0596003765
*/
 using System;

 public class MyTime1 {
     // private member variables
     int year;
     int month;
     int date;
     int hour;
     int minute;
     int second;

     // public method
     public void DisplayCurrentTime()
     {
         System.Console.WriteLine("{0}/{1}/{2} {3}:{4}:{5}",
             month, date, year, hour, minute, second);
     }

     // constructor
     public MyTime1(int theYear, int theMonth, int theDate,
         int theHour, int theMinute, int theSecond)
     {
         year = theYear;
         month = theMonth;
         date = theDate;
         hour = theHour;
         minute = theMinute;
         second = theSecond;
     }
     static void Main()
     {
         MyTime1 timeObject = new MyTime1(2005,3,25,9,35,20);
         timeObject.DisplayCurrentTime();
     }

 }



           
       








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.Method overloading testMethod overloading test
5.Add a method to BuildingAdd a method to Building
6.A simple example that uses a parameterA simple example that uses a parameter
7.Add a method that takes two argumentsAdd a method that takes two arguments
8.Use a class factoryUse a class factory
9.Return an arrayReturn an array
10.Demonstrate method overloadingDemonstrate method overloading
11.Automatic type conversions can affect overloaded method resolutionAutomatic type conversions can affect 
   overloaded method resolution
12.A simple example of recursionA simple example of recursion
13.Overloading ClassesOverloading Classes
14.C# Classes Member FunctionsC# Classes Member Functions
15.change field value in a method