AC.AvalonControlsLibrary.Controls.MonthConverter.Convert C# (CSharp) Method

Convert() public method

Converts the month from a number to the actual string
public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object The value as integer
targetType System.Type Target type
parameter object The parameter to use
culture System The current culture in use
return object
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return MonthsDefines.GetMonthString((int)value);
        }