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 >
Wrap
Text File
|
2000-08-23
|
145b
|
14 lines
using System;
namespace MyLib
{
public class MyMathClass
{
public static bool IsEven(int n)
{
return((n%2)==0);
}
}
}