|
|
|
@ -1,6 +1,7 @@ |
|
|
|
// Copyright (c) The Perspex Project. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
|
|
|
|
using System.Globalization; |
|
|
|
using System.Text; |
|
|
|
|
|
|
|
namespace Perspex.Markup.Binding.Parsers |
|
|
|
@ -25,7 +26,7 @@ namespace Perspex.Markup.Binding.Parsers |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return int.Parse(result.ToString()); |
|
|
|
return int.Parse(result.ToString(), CultureInfo.InvariantCulture); |
|
|
|
} |
|
|
|
|
|
|
|
return null; |
|
|
|
|