protected virtual void OnChildCommandNotFound(
	CommandManager manager,
	string? commandName,
	ImmutableArray<string> possibleMatches
)Protected Overridable Sub OnChildCommandNotFound ( 
	manager As CommandManager,
	commandName As String,
	possibleMatches As ImmutableArray(Of String)
)
Dim manager As CommandManager
Dim commandName As String
Dim possibleMatches As ImmutableArray(Of String)
Me.OnChildCommandNotFound(manager, 
	commandName, possibleMatches)protected:
virtual void OnChildCommandNotFound(
	CommandManager^ manager, 
	String^ commandName, 
	ImmutableArray<String^> possibleMatches
)The base class implementation writes an error message if commandName is not , and usage help with a list of all nested subcommands. If possibleMatches is not empty, it will write a message listing the matching commands instead.