Acces static JS Class in CS class

Hello

I have a CS class on cCsClass.cs script and another class in cJsClass.js
And i would like call static function of cJsClass in cCsClass…
Exemple:
— cJsClass —
static function Init()
{

}

— cCsClass —
using UnityEngine;
using System.Collections;
public class cCsClass : MonoBehaviour
{
void Update()
{
cJsClass.Init(); //Work if class coded in CS by not if coded in JS
}
}

An idea ?
Thanks

Unity - Scripting API: (section 4 in particular)

–Eric

Very thanks, it was a complation order problem.

A good way for future will be to let user to specify a compilation order number by directory in Asset… it’s just an idea

Thanks