  | NMathConfigurationLog(String, Object) Method | 
            Writes a string to the log file, replacing string parameters as necessary.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static void Log(
	string s,
	params Object[] args
)
Public Shared Sub Log ( 
	s As String,
	ParamArray args As Object()
)
public:
static void Log(
	String^ s, 
	... array<Object^>^ args
)
static member Log : 
        s : string * 
        args : Object[] -> unit Parameters
- s  String
 - A format string to be used by the Format(String, Object) method.
 - args  Object
 - A list of arguments to be used for formatting the string.
 
See Also