Skip to content
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

Open
SnowSnakz opened this issue Apr 25, 2020 · 6 comments
Open

Comments

@SnowSnakz
Copy link

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 and require, 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, (mainly info(string format, object[] objs))

Here is the issue, in my javascript file I have:

log.info("Hello from {0}!", [mod.display_name]);

Which results in:

Hello from !

Even though mod's C# object has the field display_name set to "sandbox"
I even checked with the debugger, the C# instance of mod is correct, I debugged the C# function for log.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?

@oliverbock
Copy link
Contributor

I think only public properties will go through to JavaScript. Obviously if your displayr_name is null then that is your problem.

@SnowSnakz
Copy link
Author

SnowSnakz commented Apr 28, 2020

I think only public properties will go through to JavaScript. Obviously if your displayr_name is null then that is your problem.

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...

@oliverbock
Copy link
Contributor

Try to reduce this to a simple example that you can post here.

@SnowSnakz
Copy link
Author

SnowSnakz commented Apr 29, 2020

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)

@SnowSnakz
Copy link
Author

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:

public Type PropertyName { get; set; }

And not this:

public Type FieldName;

@oliverbock
Copy link
Contributor

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.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants