Thursday, February 26, 2015

MethMvvm Visual Studio extention for C Sharp developers


  • meth - public method
  • methp - private method
  • propmvvm - mvvm property
 Features & Benefits
This will enable you to create methods in C# easily with double tap. And also enabled to crate MVVM properties easily. to do thet you have to create PropertyChange event . as follows,

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public event PropertyChangedEventHandler PropertyChanged;
 
        protected void OnPropertyChanged(string name)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(thisnew PropertyChangedEventArgs(name));
            }
        }

CodePlex Project and Download Link

0 comments: