Skip to content

Instantly share code, notes, and snippets.

@heytherewill
Created May 12, 2018 07:26
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 heytherewill/2e8b643b1b356264a0c143ef4ace4504 to your computer and use it in GitHub Desktop.
Save heytherewill/2e8b643b1b356264a0c143ef4ace4504 to your computer and use it in GitHub Desktop.
Weaving made simple
public class WhatIWantToWrite
{
public static void Main(string[] args)
{
System.Console.WriteLine("This I wrote");
}
}
public class WhatIWantToGet
{
public static void ProperMain(string[] args)
{
System.Console.WriteLine("This I wrote");
System.Console.WriteLine("This I wove");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment