Microsoft.VisualStudio.Project.ProjectPropertyChangedArgs.ProjectPropertyChangedArgs C# (CSharp) 메소드

ProjectPropertyChangedArgs() 공개 메소드

public ProjectPropertyChangedArgs ( string propertyName, string oldValue, string newValue ) : System
propertyName string
oldValue string
newValue string
리턴 System
        public ProjectPropertyChangedArgs(string propertyName, string oldValue, string newValue)
        {
            this.propertyName = propertyName;
            this.oldValue = oldValue;
            this.newValue = newValue;
        }
ProjectPropertyChangedArgs