UnityScript.Scripting.EvaluationScriptCacheKey.EvaluationScriptCacheKey C# (CSharp) Method

EvaluationScriptCacheKey() public method

public EvaluationScriptCacheKey ( Type contextType, string code ) : System
contextType System.Type
code string
return System
        public EvaluationScriptCacheKey(Type contextType, string code)
        {
            this._contextType = contextType;
            this._code = code;
        }