Tagged Questions
The changetype tag has no wiki summary.
9
votes
1answer
4k views
Convert.ChangeType and converting to enums?
I got an Int16 value, from the database, and need to convert this to an enum type. This is unfortunately done in a layer of the code that knows very little about the objects except for what it can ...
4
votes
4answers
342 views
C#: Convert System.String generically to any complex type using “Convert.ChangeType()”
I try to generically convert user input into either simple or complex types:
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome, please provide the following info... ...
2
votes
3answers
293 views
Convert Decimal to Object
How can I convert a Decimal datatype to Object and still observe the IConvertable interface ToType() method. This is preliminary work in order to convert a custom datatype (based on Decimal) using ...
1
vote
2answers
100 views
Does Convert.ChangeType() makes sense with a string value?
I found this great post by @hugoware about parsing values: http://hugoware.net/blog/more-control-when-parsing-values. I re-used his code sample in a project but now I noticed in the last block (line ...
1
vote
1answer
230 views
Why does Convert.ChangeType take an object parameter?
The Convert class has been in existence since .NET 1.0. The IConvertible interface has also existed since this time.
The Convert.ChangeType method only works on objects of types that implement ...
1
vote
1answer
924 views
C# TypeConverter long to enum type fails on ChangeType
I'm fairly new to C# and .NET - I'm trying to get conversion to work from an integer to an enum. The conversion must be performable by ChangeType (outside of my demo below this is fixed as it's ...