sortieren einer Generic List list.Sort( (emp1,emp2)=>emp1.FirstName.CompareTo(emp2.FirstName) );
Updating Angular und Components Hier gibt es eine Seite, wo man Source und Destination-Version angeben kann und bekommt eine...
Hier gibt es ein Package für die Implementation von MQTT unter DotNet. Es ist sogar .NET-Standard 2.0 kompatibel:
Vollständige Mail-API zum Senden und Empfangen von E-Mails über SMTP/IMAP/POP3. Hier ein kleines Beispiel, wie man eine Nachricht...
Im Hauptelement wird die Action wie folgt definiert: // Deklaration private Action _CallbackOnSave; public void SetCallbackOnSave(Action callback) { _CallbackOnSave = callback; }
Oft möchte man eine Baumstruktur in einer MySQL-Tabelle selektieren. +--------+-------------------+ | Parent | Child | +--------+-------------------+ | 1 | 2,3 | | 2 | 4,5,6,7...
Beispiel-Implementation: public event PropertyChangedEventHandler PropertyChanged; protected virtual void NotifyPropertyChanged([CallerMemberName] string propertyName = null) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName...
Best results in other decks
I use the Gemini web chat interface quite extensively. One thing that is tedious is giving it all the context...
Currently we often use geordi to run cucumber and rspec tests. Geordi takes care of installing a matching chromedriver for...