Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created January 21, 2018 11:41
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 ankitvijay/762979b08b1c68612e72b7c5122e3f73 to your computer and use it in GitHub Desktop.
Save ankitvijay/762979b08b1c68612e72b7c5122e3f73 to your computer and use it in GitHub Desktop.
Extern alias example 3
extern alias assembly1;
namespace NamespaceAliasExample
{
public class Program
{
static void Main(string[] args)
{
assembly1::SameNamespaceName.Class1.MethodA();
SameNamespaceName.Class2.MethodB();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment