StartupEventArgs.CommandLine 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取应用程序的命令行参数。
public:
property System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ CommandLine { System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<string> CommandLine { get; }
member this.CommandLine : System.Collections.ObjectModel.ReadOnlyCollection<string>
Public ReadOnly Property CommandLine As ReadOnlyCollection(Of String)
属性值
一个 ReadOnlyCollection<T> 对象,包含应用程序的命令行参数。
注解
如果 Startup 应用程序实现 Visual Basic 应用程序模型,则应用程序启动时会发生 该事件。 有关详细信息,请参阅 Visual Basic 应用程序模型概述。