/// <summary> /// Calls the native V8 proxy library to create a string for use within the V8 JavaScript environment. /// </summary> public InternalHandle CreateValue(string str) { return(V8NetProxy.CreateString(_NativeV8EngineProxy, str)); }