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
Create/open an Evergine project with support to ImGui
In its source code, type: ImGui.BeginPopupModal("foo", null) (actually, any method receiving ref bool)
What I expect
To allow passing a null reference to indicate I am not insterested in preserving state in any variable/field.
What I get
The compiler does not allow, given the method signature, to pass null in any form. I have tried as well to declare a bool? field but the compiler stops as well, nor I have found any casting or similar.
Versions
ImGui.Net: 1.78.0.0
The text was updated successfully, but these errors were encountered:
Steps to reproduce
ImGui.BeginPopupModal("foo", null)
(actually, any method receiving ref bool)What I expect
To allow passing a null reference to indicate I am not insterested in preserving state in any variable/field.
What I get
The compiler does not allow, given the method signature, to pass null in any form. I have tried as well to declare a bool? field but the compiler stops as well, nor I have found any casting or similar.
Versions
ImGui.Net: 1.78.0.0
The text was updated successfully, but these errors were encountered: