-
We're doing a sample and we are FOREVER doing this
```
if (sort.Equals("Title", StringComparison.OrdinalIgnoreCase))
```
I think it's time for an overload or an extension that "does the right thing.…
-
Excuse the example, it's a little contrived, it's as minimal a repro as I could think of.
I am working with ZIP archives, and I want to make sure a entry I am getting (which comes from another arch…
-
ChangeTracker does not detect changes to properties of type Dictionary. In provider for PostgreSQL database database column type hstore is mapped to .net type Dictionary but this feature can not be us…
-
**Is your feature request related to a problem? Please describe.**
This is how the comparison of `UniqueId` is implemented in MailKit:
https://github.com/jstedfast/MailKit/blob/c52fdac419dfd4fdd001a…
rklec updated
2 months ago
-
### Background and motivation
When writing a custom `JsonConverter` you get passed `JsonSerializerOptions` and this may have `PropertyNameCaseInsensitive` set to true. But there is no simple way to c…
-
[AB#1115515](https://devdiv.visualstudio.com/10e66e43-9645-4201-b128-0fdc3769cc17/_workitems/edit/1115515)
One of the issues I keep running into with the "default open" world: prereleases. As more an…
-
# Dictionary Expressions
* [x] Proposed
* [ ] Prototype: Not Started
* [ ] Implementation: Not Started
* [ ] Specification: Not Started
## Summary
[summary]: #summary
[Collection Expressi…
-
StreamsComparer currently compares the bytes of two streams and reports on the index of the first difference. It does this by reading the streams 4096 bytes at a time into buffers and comparing the ar…
-
For people coming to this thread afresh, the RFC is here: https://github.com/fsharp/fslang-design/blob/main/RFCs/FS-1094-immarray.md
----
I propose we work out how to make one particular immutable…
dsyme updated
10 months ago
-
``` csharp
public static class Math
{
public static T Min(T val1, T val2) where T : IComparable;
public static T Min(T val1, T val2, IComparer comparer);
public static T Max(T val1,…