コード例 #1
0
        static void Main(string[] args)
        {
            // Create an instance of Main's own class.
            Class1 c1 = new Class1(); // MainCode.Class1.

            c1.AMethod();

            // Create an instance of LibraryCode1.Class1.
            // The following just creates a new MainCode.Class1,
            // not what you intended; no using directive and
            // not fully qualified.
            Class1 c2 = new Class1(); // Ambiguous without qualification.

            c2.AMethod();

            // But a qualified name does create the right class.
            // Must qualify this even given the using directive, since
            // both namespaces have a Class1.
            LibraryCode1.Class1 c3 = new LibraryCode1.Class1();
            c3.AMethod();

            // Meanwhile, creating a LibraryCode1.Class2 doesn't require
            // qualification because there's a using directive and
            // no name clash.
            Class2 c4 = new Class2();

            c4.AMethod();

            // Create an instance of LibraryCode2.Class1.
            // Requires qualification, both because there is no using
            // directive for LibraryCode2 and both namespaces have a Class1.
            //
            // Note: also works even though LibraryCode2.Class1 is
            // declared internal, not public, because both classes
            // are in the same compiled assembly.
            LibraryCode2.Class1 c5 = new LibraryCode2.Class1();
            c5.AMethod();

            Console.WriteLine("Press Enter to terminate...");
            Console.Read();
        }
コード例 #2
0
ファイル: Class1.cs プロジェクト: hbumadian/CSharpForDummies
    static void Main(string[] args)
    {
      // Create an instance of Main's own class.
      Class1 c1 = new Class1();  // MainCode.Class1.
      c1.AMethod();

      // Create an instance of LibraryCode1.Class1.
      // The following just creates a new MainCode.Class1,
      // not what you intended; no using directive and
      // not fully qualified.
      Class1 c2 = new Class1();  // Ambiguous without qualification.
      c2.AMethod();

      // But a qualified name does create the right class.
      // Must qualify this even given the using directive, since
      // both namespaces have a Class1.
      LibraryCode1.Class1 c3 = new LibraryCode1.Class1();
      c3.AMethod();

      // Meanwhile, creating a LibraryCode1.Class2 doesn't require
      // qualification because there's a using directive and
      // no name clash.
      Class2 c4 = new Class2();
      c4.AMethod();

      // Create an instance of LibraryCode2.Class1.
      // Requires qualification, both because there is no using
      // directive for LibraryCode2 and both namespaces have a Class1.
      // 
      // Note: also works even though LibraryCode2.Class1 is
      // declared internal, not public, because both classes
      // are in the same compiled assembly.
      LibraryCode2.Class1 c5 = new LibraryCode2.Class1();
      c5.AMethod();

      Console.WriteLine("Press Enter to terminate...");
      Console.Read();
    }