|
|
От: |
TK
|
кывт.рф |
| Дата: | 21.06.05 12:01 | ||
| Оценка: | 13 (3) | ||
public struct MyArray // This code must appear in an unsafe block
{
public fixed char pathName[128]; // это будет не ссылка, а inplace
массив в структуре
}> Ну с номером 1 усе ясно. Но о чем говорится в пп. 2 и 3??To reference two assemblies with the same fully-qualified type names, an
alias must be specified on the command line, as follows:
/r:GridV1=grid.dll
/r:GridV2=grid20.dll
This creates the external aliases GridV1 and GridV2. To use these aliases
from within a program, reference them using the extern keyword. For example:
extern alias GridV1;
extern alias GridV2;
In the above example, GridV1::Grid would be the grid control from grid.dll,
and GridV2::Grid would be the grid control from grid20.dll.