Public Interface IConfirmable
Sub Confirm()
End Interface
Public Class WebSalesOrder()
Inherits SalesOrder
Implements IConfirmable
Public Sub Confirm() Implements IConfirmable.Confirm
' Code to confirm a web order
End Sub
' Other WebSalesOrder code
End Class
Public Class WebSalesOrder()
Inherits SalesOrder
Implements IConfirmable
Public Sub ConfirmWebOrder() Implements IConfirmable.Confirm *******
' Code to confirm a web order
End Sub
The code line which has *******, how do we change the name of the function in C#, ie I need an equivalent implementation in C#
Amit
Source :
Sub Confirm()
End Interface
Public Class WebSalesOrder()
Inherits SalesOrder
Implements IConfirmable
Public Sub Confirm() Implements IConfirmable.Confirm
' Code to confirm a web order
End Sub
' Other WebSalesOrder code
End Class
Public Class WebSalesOrder()
Inherits SalesOrder
Implements IConfirmable
Public Sub ConfirmWebOrder() Implements IConfirmable.Confirm *******
' Code to confirm a web order
End Sub
The code line which has *******, how do we change the name of the function in C#, ie I need an equivalent implementation in C#
Amit
Source :