7
votes
How to compare two elements of the same but unconstrained generic type for equality?
Did you try something like this?
public class Example<TValue>
{
private TValue _value;
public TValue Value
{
get { return _value; }
set
{
…
-2
votes
What is the easiest way to get 4(or any count) random unique ids from an id collection with c#?
Random random = new Random();
long firstOne = idCollection[random.Next(idCollection.Count)];
long secondOne = idCollection[random.NExt(idCollection.Count)];
...and so on …
0
votes
Best way to design a multi-type object
One thing is to store any type in your internal state of the class, and another is to expose it externally. When you write a class, you are actually declaring a contract for its behavior. The way y …
