.NET 5.0 is now available and you might want to upgrade or include the new target framework within your continuous integration. If your CD features a self-hosted Agent, this article might be the wrong place to look for an answer, as we only cover the Hosted VS2017 pool. Remark: This workaround only works for .NET …
Tag: .net
WPF Scrollable + Zoomable + Dragable Control
Unluckily there is no standard control to zoom, drag and scroll your content. My implementation is based on following tutorial. With this implementation you are able to zoom, drag and scroll arbitrary controls. Showcase ScrollDragZoomControl.xaml ScrollDragZoomControl.xaml.cs Usage Add the “ScrollDragZoomControl” to your project and use it as follows:
Iteration performance – Vergleich
Es gibt viele Möglichkeiten eine Ansammlung von Daten mithilfe einer Iteration zu durchlaufen. Die verwendete Iteration hängt meistens von der Sachlage ab. Wird ein Index benötigt. Auf wie viel Objektvariablen wird zugegriffen. Muss das Objekt noch convertiert oder gecastet werden. … Jedoch welche Iterationsmethode ist die performanteste? Welcher Durchlauf ist am schnellsten? Zur Auswahl steht ForEach …