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

  1.  
  2. using System;
  3.  
  4. namespace MyLib
  5. {
  6.     public class MyMathClass
  7.     {
  8.         public static bool IsEven(int n)
  9.         {
  10.             return((n%2)==0);
  11.         }
  12.     }
  13. }
  14.