Created
December 5, 2017 21:53
-
-
Save VladD2/9e64cdfd7aff8c91b9eca161c0e5c36e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace A // создает локальный символ простанства имен для текущей ДЛЛ | |
{ | |
module B // создает локальный символ модуля для текущей ДЛЛ | |
{ | |
Main() : void // создает локальный символ метода для текущей ДЛЛ | |
{ | |
// порождает АСТ в котором возможен биндинг | |
Foo(); // вызов Foo из нэйспэйса A объявленного в другой сборке. | |
} | |
} | |
} | |
// другая ДЛЛ | |
namespace A | |
{ | |
class Foo | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment