vote up 0 vote down star

I was looking at code in WPF which is in VB. I am trying to convert it to C#. Eventhough I used VB .Net to C# converter I cannot figure out the correct syntax for the following code in C#. Any ideas how to write this in C#?

VB Code:

Public Event PropertyChanged As PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
flag

55% accept rate

1 Answer

vote up 1 vote down

This article should help:

How to: Implement Interface Events (C# Programming Guide)

So in your case it should be (theoretically):

 public event PropertyChangedEventHandler PropertyChanged;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.