GeneratedCommandManagerAttributeAssemblyNames Property
            Gets or sets the names of the assemblies that contain the commands that the generated
            
CommandManager will use.
            
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public string[]? AssemblyNames { get; set; }
Public Property AssemblyNames As String()
	Get
	Set
Dim instance As GeneratedCommandManagerAttribute
Dim value As String()
value = instance.AssemblyNames
instance.AssemblyNames = value
public:
property array<String^>^ AssemblyNames {
	array<String^>^ get ();
	void set (array<String^>^ value);
}
Property Value
String
            An array with assembly names, or 
 to use the commands from the
            assembly containing the generated manager.
            
 
              The assemblies used must be directly referenced by your project. Dynamically loading
              assemblies is not supported by this attribute; use the
              
CommandManager(IEnumerableAssembly, CommandOptions)
              constructor instead for that purpose.
            
              The names in this array can be either just the assembly name, or the full assembly
              identity including version, culture, and public key token.