Is there a way to implement a generic implicit or explicit converter for anything to an array of anything, something like this:
public static implicit operator T[](T objToConvert)
{
return new T[] { objToConvert };
}
feedback
|
|
Operator overloading methods have to live inside the class they are overriding operators for (one side or the other). Since "T" is not defined, I don't see how this can be accomplished. | |||||
feedback
|
|
No. The closest I can think of is an extension method:
Use as:
| |||||||||
feedback
|
|
Note that you can omit the type name from the array constructor, which means the syntax is fairly clean, even with a long type name:
| |||||
|
feedback
|
|
You can do it using normal method:
I don't think you can define generics operator. Note, anyway, that the compiler is sufficient cleaver to guess the type of the generic param, so you can use:
aStringArray is defined as a string array even if you don't specify the generic param. | |||
|
feedback
|
|
I was trying to think of situations where you might really use an implicit conversion to array. I started to wonder if many of the situations where you would want to do this could be alleviated by use of the params keyword. The main situation that I could think of was that you had a single item of something and wanted to pass it to a function that takes an array as a parameter:
Hopefully in this situation the author of the method that you want to call has choosen to use the params keyword to allow you to pass your variable without wrapping it in an array:
Of course, this doesn't really help you in situations where you need convert a variable to a single item array but not as a parameter to a method or in situations where the author of the method didn't use the params keyword. But what kind of situation would the former be? Assigning an array to a property? Psh. How often does that happen? And the latter? If the author didn't use the params keyword when they could have, then send them an email complaining about it. If the author is yourself, feel free to be extra belligerent in the email. Hopefully you can tell that I'm being facetious. Seriously, though, are there any other common usage situations that you can think of where the params keyword would not be applicable? ** Disclaimer: I don't advocate excessive use of the params keyword. Use it if you think you should, but don't take my post to mean that you should always use the params keyword whenever you can. | |||
feedback
|
|
In the past I've used the concept of a "Conductor" (my own name for it), which is just a class/struct that provides access to an underlying value. The concept is useful for abstracting the access to a particular value retrieved from somewhere. For example, if you wanted to abstract access to a particular value in a dictionary, you could create a Conductor object that held a reference to the dictionary and the appropriate key for that value. You can also use this concept to easily implement rollback for serializable classes or for value types, though for that you'd need to add Rollback and Commit methods to the Conductor class/struct. Below is an example of how you can use implicit conversions from T to Conductor and from Conductor to T[] in order to (sort of) achieve what you want.
| |||
|
feedback
|