Hi, I have 2 questions.

I want to be able to hotfix my game on Android and iOS.
According to the docs I just need to load the compiled .dll:

For a C# project, you need to build the DLL and place it in the project directory first. Then, before loading the resource pack, you need to load its DLL as follows: Assembly.LoadFile("mod.dll")

However when I tried doing this (loading the Game.dll <- this is created during the export .pck process) any reference to the Godot engine e.g. GD.Print("something") causes a GodotCSharp not found error in the editor.

My second question is whether this approach will work on iOS.
My understanding is that iOS is a bit more picky with loading .dlls and reflection. The system we used in Unity had to generate a bunch of bindings on the "core-game layer" so that at runtime, we can safely access those functions on iOS for hotfixes.

a year later

ios does not support hot reload dll, other platform work perfect.
this is my test code
var alc = AssemblyLoadContext.GetLoadContext(Assembly.GetExecutingAssembly());
var bytes = Godot.FileAccess.GetFileAsBytes("res://TestMod.dll");
var assembly = alc.LoadFromStream(new MemoryStream(bytes));
Type t = assembly.GetType("TestMod.TestModInit");
object o = t.GetMethod("Init")?.Invoke(null, null);
GetNode<Label>("Label").Text = o as string;