Remove culture from Enum.ToString call

pull/30/head
David Hall 2019-01-16 08:16:47 -07:00
parent 6bd53ea1d7
commit f191da9506
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ namespace Vanara.Windows.Forms.Design
public long LongVal => Convert.ToInt64(Value);
public override string ToString() => Value.ToString(CultureInfo.CurrentCulture);
public override string ToString() => Value.ToString();
}
}
}