Leggere in inglese

Condividi tramite


Il metodo '<nomemetodo1>' non può implementare il metodo parziale '<nomemetodo2>' perché è già implementato da '<nomemetodo3>'

Il metodo '<nomemetodo1>' non può implementare il metodo parziale '<nomemetodo2>' perché è già implementato da '<nomemetodo3>'. Un solo metodo può implementare un metodo parziale.

Non è possibile avere due metodi parziali che implementano la stessa dichiarazione di metodo parziale. Il codice seguente causa questo errore.

VB
Partial Class Product  
  
    ' Declaration of the partial method.  
    Partial Private Sub ValueChanged()  
    End Sub  
  
End Class  
VB
Partial Class Product  
  
    ' First implementation of the partial method.  
    Private Sub ValueChanged()  
        MsgBox(Value was changed to " & Me.Quantity)  
    End Sub  
  
    ' Second implementation of the partial method causes this error.  
    'Private Sub ValueChanged()  
    '    Console.WriteLine("Quantity was changed to " & Me.Quantity)  
    'End Sub  
  
End Class  

ID errore: BC31434

Vedi anche