Skip to content

Instantly share code, notes, and snippets.

@ptrelford
Last active January 31, 2017 20:17
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/5d71fdd60e2a7c7088731ba6952a439b to your computer and use it in GitHub Desktop.
Save ptrelford/5d71fdd60e2a7c7088731ba6952a439b to your computer and use it in GitHub Desktop.
using System;
using System.Xml;
using static Variables;
class MainClass
{
public static void Main(string[] args)
{
for (i = 0; i < 10; i++)
{
s = "Hello World!";
Console.WriteLine(s);
}
}
}
public static class Variables
{
public static int i, index;
public static string s, text;
public static XmlDocument doc;
public static XmlNode node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment