猿问

vb代码用c#怎么实 -- RaiseEvent 用c#怎么实现

请问这部分vb代码用c#怎么实现  谢谢

Public Event OnError(ByVal msg As Object)

 

  Public Sub Disconnect()
    ....
    error_no = CF_send(LT_DATA, DataLen)
    If (error_no <> 0) Then
      msg = "Socket Error Number:" & (Str(error_no))
      TError = msg
      RaiseEvent OnError(msg)
      Exit Sub
    End If

    error_no = CF_Leave()
    If (error_no <> 0) Then
      msg = "Socket Error Number:" & (Str(error_no))
      TError = msg
      RaiseEvent OnError(msg)
      Exit Sub
    End If
  End Sub

12345678_0001
浏览 412回答 1
1回答
随时随地看视频慕课网APP
我要回答