How do you make a C# class see a Javascript class?

How do you make a C# class see a Javascript class?

Using Monodevelop I can see other C# classes while in
a C# file, but no Javascript classes.

The question was poorly worded and your answer while correct it is misleading.

The answer sb:
AClassName instObject = gamObjectInst.GetComponent(“AClassName”) as AClassName;

But this still doesn’t work unless the Javascript class lives in the …/Standard Assets/Scripts folder
or the …/Plugins folder and your C# class does NOT live in either of the before mentioned folders.

This is because of the order of compilation, not something you normally need to think about.

Hope this helps someone else out.