1
vote
3answers
995 views
Generate random enum in C# 2.0.
Could someone please point me toward a cleaner method to generate a random enum member. This works but seems ugly.
Thanks!
public T RandomEnum<T>()
{
string[] items …
1
vote
Should I agree to ban the “using” directive from my c# projects?
you can also use aliases...
using diagAlias = System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
…
