Skip to content

Instantly share code, notes, and snippets.

@ptrelford
Last active January 31, 2017 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptrelford/9151b76f640fd24a8113e36f40a5de9f to your computer and use it in GitHub Desktop.
Save ptrelford/9151b76f640fd24a8113e36f40a5de9f to your computer and use it in GitHub Desktop.
using System;
using System.Xml;
class MainClass : Variables
{
public static void Main(string[] args)
{
new MainClass().StaticIsEvilForSure();
}
void StaticIsEvilForSure()
{
for (i = 0; i < 10; i++)
{
s = "Hello World!";
Console.WriteLine(s);
}
}
}
public class Variables
{
public int i, index;
public string s, text;
public XmlDocument doc;
public XmlNode node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment