-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathExample.cs
More file actions
25 lines (22 loc) · 709 Bytes
/
Example.cs
File metadata and controls
25 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using Mizux.DotnetNative.Bar;
using Mizux.DotnetNative.Foo;
using Mizux.DotnetNative.FooBar;
namespace Mizux.DotnetNative.FooApp {
class Program {
static void Main(string[] args) {
int level = 1;
Console.WriteLine($"[{level}] Enter Example");
Bar.Bar.StaticFunction(level+1);
Console.WriteLine($"[{level}] Exit Example");
level = 1;
Console.WriteLine($"[{level}] Enter Example");
Foo.Foo.StaticFunction(level+1);
Console.WriteLine($"[{level}] Exit Example");
level = 1;
Console.WriteLine($"[{level}] Enter Example");
FooBar.FooBar.StaticFunction(level+1);
Console.WriteLine($"[{level}] Exit Example");
}
}
}