Skip to content

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HyperSphereStudio authored Jan 12, 2022
1 parent bd169bc commit 4ca6161
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Julia.Exit(0);
Struct Handling:
```csharp

#You have to choices, allocate a struct or create a struct.
#You have two choices, allocate a struct or create a struct.
#Allocating directly sets the memory, creating will call a constructor of the struct

var myAllocatedStruct = Julia.AllocStruct(JLType.JLRef, 3); //Will throw error
Expand Down Expand Up @@ -98,9 +98,9 @@ Julia Garbage Collector Pinning:
myBasicObj = myBasicCon()
handle = pin(myBasicObj)

//Stuff calling Sharp Functions
#Stuff calling Sharp Functions

free(handle) //Will also auto free. You can also treat it like stream and put it in do end block
free(handle) #Will also auto free. You can also treat it like stream and put it in do end block
```


Expand Down

0 comments on commit 4ca6161

Please sign in to comment.