How do I create a GDScript instance in CSharp?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By kosmiso

Hi –

I want to create an instance of an old script I wrote a while ago.
I am trying to do it with C# but I can’t find a way do it.

Basically I would really appreciate it if someone could tell me the
equivalent code of this one:

var navigator_obj = load("res://navigator.gd")
var param = get_node("../Node2D")
navigator = navigator_obj.new(param)

Thanks!

:bust_in_silhouette: Reply From: PontiffPomelo
GDScript navigator_obj = (GDScript) GD.Load("res://navigator.gd");
Godot.Node param = GetNode("../Node2D");
Godot.Object navigator = (Godot.Object) navigator_obj.New(param);