A
Arthur Dent
Hello all...
I have a method which returns a KeyValuePair(Of Long, String). I would like
to make an alias for that, so instead of typing KeyValuePair(Of Long,
String) everywhere I could just type my alias instead.
First I thought inheritance, ... Structure MyPair Inherits KeyValuePair(Of
Long, String), but you can't inherit structures.
Next I thought Lambdas, but I don't think those really apply here.
Basically, I just want to declare another name for the (long) name
KeyValuePair(Of Long, String)
Thanks in advance,
- Arthur Dent.
I have a method which returns a KeyValuePair(Of Long, String). I would like
to make an alias for that, so instead of typing KeyValuePair(Of Long,
String) everywhere I could just type my alias instead.
First I thought inheritance, ... Structure MyPair Inherits KeyValuePair(Of
Long, String), but you can't inherit structures.
Next I thought Lambdas, but I don't think those really apply here.
Basically, I just want to declare another name for the (long) name
KeyValuePair(Of Long, String)
Thanks in advance,
- Arthur Dent.