You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,21 @@
1
1
Julia.NET is an API designed to go between .NET and the Julia Language. It utilizes C Intefaces of both languages to allow super efficient transfers between languages (however it does have type conversion overhead as expected).
2
2
3
-
Command Line Arguments
3
+
Launching Julia from C#
4
4
```csharp
5
5
JuliaOptionsoptions=newJuliaOptions();
6
6
options.ThreadCount=4;
7
7
Julia.Init(options);
8
8
```
9
9
10
+
Launching C# from Julia
11
+
```julia
12
+
using JULIAdotNET
13
+
using JULIAdotNET.JuliaInterface
14
+
15
+
handle =Init() #Keep handle alive as long as you want .NET to be alive
0 commit comments