mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 00:57:25 +00:00
16 lines
247 B
C#
16 lines
247 B
C#
namespace CSharpOnly
|
|
{
|
|
class CSharpOnly
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
int val = Lib1.getResult();
|
|
|
|
Lib2 l = new Lib2();
|
|
val = l.myVal;
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|