ConsoleApplicationBase.InternalCommandLine Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the values to use as the current application's command-line arguments.
protected:
property System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ InternalCommandLine { void set(System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ value); };
protected System.Collections.ObjectModel.ReadOnlyCollection<string> InternalCommandLine { set; }
member this.InternalCommandLine : System.Collections.ObjectModel.ReadOnlyCollection<string>
Protected Property InternalCommandLine As ReadOnlyCollection(Of String)
Property Value
A ReadOnlyCollection<T> of String
, containing the strings to use as the command-line arguments for the current application.
Remarks
This method allows you to set the internal value of the command-line arguments used by the ConsoleApplicationBase class. This property determines what the CommandLineArgs property returns. If you do not set this property, or you set this property to Nothing
, the CommandLineArgs property obtains the command-line arguments from the CommandLine property.