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
Wrap
Text File
|
2000-08-23
|
311b
|
17 lines
using System;
using MyLib;
class UseMyLib
{
public static void Main()
{
int n = 33;
bool bIsEven = MyMathClass.IsEven(n);
if(bIsEven) Console.WriteLine("{0} is an even number", n);
else Console.WriteLine("{0} is an odd number", n);
}
}