David Karlaš
David Karlaš
It should be propagated to `ikcp_update` return via `ikcp_flush`.
# Background Today there is no good story for template authors to test their templates and ensure they work as intended after doing changes and environment around them changes(.NET Framework,...
Test keeps randomly failing, and I don't have time right now to investigate proper fix for it...
Add instructions on how to add translations to template on [Microsoft Docs - Custom templates for dotnet new](https://docs.microsoft.com/en-us/dotnet/core/tools/custom-templates). Update template localizer and the engine to point to docs page wherever...
Libraries writers who use async/await (e.g. roslyn) use almost always .ConfigureAwait(false). I this case it would make sense to have some analizer like this: http://blog.cincura.net/233476-checking-for-configureawait-false-automatically/ If WPF or other UI...
I think it would be cool to change reflected calls to delegates for static methods and Expression for instance methods. I found this article: http://byterot.blogspot.com/2012/05/performance-comparison-of-code.html and added "Reflected Delegate" sample......
Sorry I couldn't think of better title :) To reproduce this run Format document on following code: ``` csharp namespace name { ``` It's important there are only 2 lines...
``` public class C { public int D; public C(int d) { D = d; } // no warnings } public class C1 { public int D; public C1(int d)...
``` ERROR [2017-03-10 09:53:34Z]: Exception in diagnostic analyzer AD0001:Analyzer 'RefactoringEssentials.CSharp.Diagnostics.FunctionNeverReturnsAnalyzer' threw an exception of type 'System.NotSupportedException' with message 'Specified method is not supported.'. System.NotSupportedException: Specified method is not supported. at...
Example: ``` public void MethodOne(string param1, CancellationToken token) { MethodTwo("Hello "+param1);//This line should have warning } public void MethodTwo(string param1, CancellationToken token = default(CancellationToken)) { } ``` Idea is simple......