We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413211a commit 6879a4aCopy full SHA for 6879a4a
1 file changed
README.md
@@ -27,7 +27,7 @@ Program.cs
27
```csharp
28
using System.Reflection;
29
using CSharpToJavaScript;
30
-namespace ProgramTest;
+namespace ConsoleAppTest;
31
32
public class Program
33
{
@@ -46,13 +46,13 @@ public class Program
46
};
47
48
CSTOJS cstojs = new(executingAssembly, opt);
49
- cstojs.Generate2Async("C:\\GitReps\\Program\\Program\\CSharp\\test.cs");
+ cstojs.Generate2Async("C:\\GitReps\\ConsoleAppTest\\CSharp\\test.cs");
50
}
51
52
```
53
test.cs
54
55
+namespace ConsoleAppTest.CSharp;
56
57
public class Test
58
0 commit comments