Shad Storhaug

Results 300 comments of Shad Storhaug

Not sure what your question is, the sample you provided is working as expected. However, you have not put any links on the page to navigate off of it, so...

Now I see what you mean. This is a bug. The issue is that [this line](https://github.com/snikch/jquery.dirtyforms/blob/master/jquery.dirtyforms.js#L464): ```js var changed = (isDirty !== ($form.hasClass(dirtyClass) && $form.find(':dirty').length === 0)); ``` does not...

Looks like no dice on the attribute - it isn't supported by .NET standard 1.5. The "exe in question" is dotnet.exe from the .NET Core 1.1 with SDK Preview 2.1...

## UPDATE I finally was able to [isolate the `AccessViolationException` to a specific scenario](https://github.com/sillsdev/icu-dotnet/issues/56) and rule out anything in our project as being a factor. However, I discovered that one...

Just FYI, I am currently in the process of porting `RuleBasedNumberFormat` line-by-line from Java in [ICU4N](https://github.com/NightOwl888/ICU4N/pull/42). It is still very much a work in progress and there are no plans...

> It's really unfortunate that ICU APIs are not part of the framework. Or fortunate, depending on how you look at it. The ICU code isn't always the most efficient...

> The .NET localization doesn't seem to localize Arabic numbers. As I had previously mentioned, .NET parsers and formatters only support ASCII digits (that is 0-9). However, .NET does provide...

Thanks for the link. It makes sense given the huge effort it must have taken to optimize the parsers and formatters, although, being that they have a `DigitSubstitution` property for...