SerializableLocalizationObjectPair.SerializableLocalizationObjectPair C# (CSharp) Method

SerializableLocalizationObjectPair() public method

Initializes a new instance of the SerializableLocalizationObjectPair class.
public SerializableLocalizationObjectPair ( string keyValue, LocalizedObject, changedValue ) : System
keyValue string /// Key value. ///
changedValue LocalizedObject, /// Changed value. ///
return System
    public SerializableLocalizationObjectPair(string keyValue, LocalizedObject changedValue)
    {
        this.keyValue = keyValue;
        this.changedValue = changedValue;
    }
SerializableLocalizationObjectPair