C# Tips

Today's C# Quiz

Quiz

Find an invalid expression among the following C# Generics examples.

class A where T : class, new()
class A where T : struct, IComparable
class A where T : class, struct
class A where T : Stream where U : IDisposable

Tip

Answer