home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / C#ed / Setup.exe / UseMyLib.cs < prev   
Text File  |  2000-08-23  |  311b  |  17 lines

  1.  
  2. using System; 
  3. using MyLib;
  4.  
  5. class UseMyLib
  6.    public static void Main() 
  7.    { 
  8.       int n = 33;
  9.             
  10.       bool bIsEven = MyMathClass.IsEven(n);
  11.       
  12.       if(bIsEven) Console.WriteLine("{0} is an even number", n);
  13.       else Console.WriteLine("{0} is an odd number", n);
  14.    }
  15. }
  16.