This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// LICENSE: MIT | |
// Taken from Adalon.Mediolanum | |
// Not published yet | |
// Will be published under MIT license | |
// To use: replace ThrowHelper with other null check | |
// replace FrugalPairLocalList with other List collection | |
// Usage: EqualityComparerEx.Select((Foo f) => f.IntProperty).ChainWith(f=>f.StringProperty, StringComparer.OrdinalIgnoreCase) | |
using System; | |
using System.Collections.Generic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Security.Cryptography.Pkcs; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
public static class Gist | |
{ | |
// Based on original RdpSign reverse engineering by Norbert Federa (https://github.com/nfedera/rdpsign). |