Skip to content

Instantly share code, notes, and snippets.

@aadennis
Created February 28, 2017 08:57
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 aadennis/37cd50c23228816a31bf3dc400a61684 to your computer and use it in GitHub Desktop.
Save aadennis/37cd50c23228816a31bf3dc400a61684 to your computer and use it in GitHub Desktop.
Simple library for a PowerShell blog article
namespace MathLib
{
public class Methods
{
public Methods()
{
}
public static int Sum(int a, int b)
{
return a + b;
}
public int Product(int a, int b)
{
return a * b;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment