SuperMap.WindowsPhone.Core.DictionaryChangedEventArgs.DictionaryChangedEventArgs C# (CSharp) 메소드

DictionaryChangedEventArgs() 개인적인 메소드

private DictionaryChangedEventArgs ( NotifyCollectionChangedAction action, string key, object oldValue, object newValue ) : System
action NotifyCollectionChangedAction
key string
oldValue object
newValue object
리턴 System
        internal DictionaryChangedEventArgs(NotifyCollectionChangedAction action, string key, object oldValue, object newValue)
        {
            this.Action = action;
            this.Key = key;
            this.OldValue = oldValue;
            this.NewValue = newValue;
        }
DictionaryChangedEventArgs