LuaInterface.LuaBinder.Bind C# (CSharp) Method

Bind() public static method

public static Bind ( LuaState state ) : void
state LuaState
return void
		public static void Bind(LuaState state) {}
	}

Usage Example

示例#1
0
        public static int importWrap(IntPtr L)
        {
            string text = string.Empty;

            text = LuaDLL.lua_tostring(L, 1);
            text = text.Replace('.', '_');
            if (!string.IsNullOrEmpty(text))
            {
                LuaBinder.Bind(L, text);
            }
            return(0);
        }
All Usage Examples Of LuaInterface.LuaBinder::Bind
LuaBinder