OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osFormatString C# (CSharp) Method

osFormatString() public method

public osFormatString ( string str, OpenSim.Region.ScriptEngine.Shared.LSL_Types.list strings ) : OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString
str string
strings OpenSim.Region.ScriptEngine.Shared.LSL_Types.list
return OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString
        public LSL_String osFormatString(string str, LSL_List strings)
        {
            CheckThreatLevel(ThreatLevel.VeryLow, "osFormatString");
            m_host.AddScriptLPS(1);

            return String.Format(str, strings.Data);
        }
OSSL_Api