Skip to content

Instantly share code, notes, and snippets.

@hanpari
Created January 5, 2018 21:53
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 hanpari/073c816f3e2545367b0f2299f74affcc to your computer and use it in GitHub Desktop.
Save hanpari/073c816f3e2545367b0f2299f74affcc to your computer and use it in GitHub Desktop.
Neco mi unika?
public class Program
{
public static void GetProfile(string name, string[] include = null, string[] exclude = null){
Console.WriteLine(include == null);
Console.WriteLine(exclude == null);
}
public static void Main(string[] args)
{
//Your code goes here
GetProfile(name:"jmeno", include: new string[]{"include"}, exclude: new string[]{"exclude"});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment