AcManager.Tools.Helpers.AcSettings.AcSettingsHolder.InnerZeroToOffConverter.ConvertBack C# (CSharp) Метод

ConvertBack() публичный Метод

public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType System.Type
parameter object
culture System.Globalization.CultureInfo
Результат object
            public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
                return value == parameter || value as string == ToolsStrings.AcSettings_Off ? 0d : value;
            }
        }
AcSettingsHolder.InnerZeroToOffConverter