Monday, September 13, 2004
#
using System;
namespace Testerdetest
{
///
/// General class to show that an application is still active
///
public sealed class ShowActive
{
public
static void Start()
{
int
[] ii = new int[90];
for (int i = 0; i < ii.Length; i++)
{
ii[i]=i;
}
for (int i = 0; i < 5; i++)
{
ii[i]=i;
} } } }
. . .