Programming KB

sortieren einer Generic List list.Sort( (emp1,emp2)=>emp1.FirstName.CompareTo(emp2.FirstName) );

Programming KB
youtube.com

Updating Angular und Components Hier gibt es eine Seite, wo man Source und Destination-Version angeben kann und bekommt eine...

Programming KB
github.com

Hier gibt es ein Package für die Implementation von MQTT unter DotNet. Es ist sogar .NET-Standard 2.0 kompatibel:

Programming KB
github.com

Vollständige Mail-API zum Senden und Empfangen von E-Mails über SMTP/IMAP/POP3. Hier ein kleines Beispiel, wie man eine Nachricht...

Programming KB

Im Hauptelement wird die Action wie folgt definiert: // Deklaration private Action _CallbackOnSave; public void SetCallbackOnSave(Action callback) { _CallbackOnSave = callback; }

artfulsoftware.com

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

PostgreSQL can cosplay as a full-text search engine. It doesn't have the features or fidelity of ElasticSearch or...

Using ffmpeg, you can easily re-encode a video to reduce its file size. Command Do it like this:

Search in all decks