Catalin Pop

Results 19 comments of Catalin Pop

Hi @sorcer1 Thank you for the bug report. It's kind of a known issue, I will need to add support for SQL Server versions lower than 2014. For now, removing...

@alexanderkrennerfideo Pull requests are welcome

@weedkiller If you can be more specific, what kind of Grid views are you interested in?

@sorcer1 yes. If the feature is sufficiently requested, I will merge it.

My input: WS-\* is absolutely necessary for any SOAP based stack for interoperability with other WS technologies or in case of existence of an IdP (Identity Provider). Almost any decent...

This would be another great case for #1447 Proposal: Customisable overload resolution

Stack alloc would be great for params array. Expecially the following BCL methods would likely benefit significantly: ```csharp String.Concat (2 overloads) String.Format (2 overloads) String.Join (2 overloads) String.Split (1 overloads)...

@DavidArno Your objection has nothing to do with string enums per se, but how enums were implemented in C#. Totally different issues.

>I imagine that adding a new value to a closed enum would be a binary breaking change. How would this be enforced without the C# compiler generating an under the...

So a default clause for a closed enum will mean: - Don't bother me about exhaustiveness. No default clause: - Error for missing cases, not handling all values. It sounds...