API Reference › CommandLineICommandLineInterfaceNamespace: SwiftlyS2.Shared.CommandLine · Assembly: SwiftlyS2.CS2.dllpublic interface ICommandLineView sourcePropertiesCommandLinestring CommandLine { get; }Property ValuestringHasParametersbool HasParameters { get; }Property ValueboolParameterCountGets the total number of parameters in the command line.int ParameterCount { get; }Property ValueintMethodsGetParameterFloat(string, float)Gets a float parameter from the command line.float GetParameterFloat(string paramName, float defaultValue = 0)ParametersparamNamestringdefaultValuefloatoptionalReturnsfloatGetParameterInt(string, int)Gets an integer parameter from the command line.int GetParameterInt(string paramName, int defaultValue = 0)ParametersparamNamestringdefaultValueintoptionalReturnsintGetParameterString(string, string)Gets a string parameter from the command line.string GetParameterString(string paramName, string defaultValue = "")ParametersparamNamestringdefaultValuestringoptionalReturnsstringHasParameter(string)Checks if a parameter exists in the command line.bool HasParameter(string paramName)ParametersparamNamestringReturnsbool