-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing C# field through javascript and back into C# results in null #87
Comments
I think only |
The field is both public and not null. I used the debugger in VS to check, the field is public and the value is "sandbox", when I pass it through JavaScript it comes out as null... |
Try to reduce this to a simple example that you can post here. |
I can't even seem to setup the project anymore, Visual Studio just crashes when I load my pre-existing project and when I install the NuGet package, the Noesis.Javascript namespaces don't exist.... This has to be a bug with my Visual Studio installation. (I haven't touched this project for a few days) |
Reguardless, I was using fields, and I just now noticed that you said "properties"... So if I am not mistaken by "property" you mean specifically this:
And not this:
|
Yes, I don't think fields are supported. You get null rather than an error when a property does not exist. (This is convenient sometimes, and not other times. Your object can also store arbitrary new properties, if I remember correctly.) |
Here is my setup:
I plan to use JavaScript as the language for modding my game, I currently have it setup to create a javascript context with 3 variables:
log
,mod
andrequire
,require
isn't being used yet...mod
is a C# object with the field I am trying to use.log
is also a C# object with functions that redirect to log4net, (mainlyinfo(string format, object[] objs)
)Here is the issue, in my javascript file I have:
Which results in:
Even though
mod
's C# object has the fielddisplay_name
set to"sandbox"
I even checked with the debugger, the C# instance of
mod
is correct, I debugged the C# function forlog.info
and noticed that mod.display_name was evaluating to null before being passed through the function. Why is this happening? And how can I fix it?The text was updated successfully, but these errors were encountered: