I want to do this:
public class ValueContainer<T> {
public T Value { get; set; }
}
Then I want to assign a value to it like this:
private ValueContainer<string> value;
value = "hello";
I'm sure I've seen this somewhere but can't figure out how to do it.
TIA
value.Value = "hello";?