Problem converting a script from JS to C#

Hello mates,
I’m converting a script from JS to C#. This script is called “MenuGUI.js” and is part of the “FPX.Zero 1.0 NetExample”.
I’ve successfully converted the script, but I’m having an error:

This is line 41 of my c# converted script:

MenuNetWork multiplayerScript;

and this is the original line from the JS script:

var multiplayerScript : MenuNetWork;

I’ve the suspect that MenuNetWork is something external of this script ( I’ve also MenuNetwork.js that need to be ported from JS to C# too), but I cannot find MenuNetWork declaration in MenuNetwork.js neither …

I can post the two scripts if needed

Solved: I realized that MenuNetWork is the entire MenuNetwork.js :wink: