PRoConEvents.MULTIbalancer.ForceSetPluginVariable C# (CSharp) Method

ForceSetPluginVariable() private method

private ForceSetPluginVariable ( String strVariable, String values ) : void
strVariable String
values String
return void
        private void ForceSetPluginVariable(String strVariable, String[] values)
        {
            try {
            ForceSetPluginVariable(strVariable, String.Join("|", values));
            } catch (Exception e) {
            ConsoleException(e);
            }
        }
MULTIbalancer