Skip to content

Instantly share code, notes, and snippets.

@rwindegger
Created October 1, 2016 10:22
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 rwindegger/6bc11c2903a7f24c5626f1172c23211d to your computer and use it in GitHub Desktop.
Save rwindegger/6bc11c2903a7f24c5626f1172c23211d to your computer and use it in GitHub Desktop.
namespace at.automism.FriendlyAssemblies.Secret
{
using System;
using System.Collections.Generic;
using System.Linq;
public static class Greeter
{
public static void SayHello()
{
Console.WriteLine("The Greeter says: "Hello, World!"");
}
internal static void WhisperHello()
{
Console.WriteLine("The Greeter whispers: "Hello, Mr. Bond!"");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment