HotDog's Blog

Hotdog (Robert Verpalen) about C# and vb.net

This blog hosted by:
http://blogs.vbcity.com      
  Home :: Syndication  :: Login

AprMay 2008Jun
SMTWTFS
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

Articles

Archives

Topics

CONTACT

Fun but useful linkies

General

VS 2005

Wolfenstein ET

Code Copy HideScrollFull
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;
}
}
}
}
. . .
posted on Monday, September 13, 2004 9:10 AM