1
vote
Finding all Namespaces in an assembly using Reflection (DotNET)
public static void Main() {
var assembly = ...;
Console.Write(CreateUsings(FilterToTopLevel(GetNamespaces(assembly))));
}
private static string CreateUsings(IEnumerable<string …
1
vote
(.NET) Easy way to generate random, easy to remember passcodes
I would suggest using the RandomNumberGenerator class, it will give you better results than GUID generation.
…
2
votes
System.Linq and IEnumerable Group Help
To get the number of groups:
cardValueGroups.Count()
To make sure they all have exactly three cards:
cardValueGroups.All(g => g.Count() == 3)
…
3
votes
Non cap sensitive search C#
One way to do it.
var answer = list.FirstOrDefault(item => item.Equals("test", StringComparison.CurrentCultureIgnoreCase));
…
