devxlogo

Error-Free Conversion for All CLR Primitive Types

Error-Free Conversion for All CLR Primitive Types

Type conversions are more error-prone than most code, so it’s useful to have ways to convert types in ways you know will work. The CanConvert method in this tip checks data types in advance, and lets you know whether the conversion you’re interested in is possible. The method supports all the CLR Primitive types, including guid, double, int, and enums such as color. You’d use it like this:

CanConvert("devx", typeof(int)); //returns false;CanConvert("orange", typeof(System.Drawing.Color)); //returns true;

Here’s the method code:

/// Determines whether the specified value can be converted to the specific type/// /// The value in question./// The result type./// ///    true if specified value can be converted to the specific type; otherwise, false./// public static bool CanConvert(string value, Type type){   if (type == null || string.IsNullOrEmpty(value))      return false;   System.ComponentModel.TypeConverter conv =       System.ComponentModel.TypeDescriptor.GetConverter(type);   if (conv.CanConvertFrom(typeof(string)))   {      try      {         conv.ConvertFrom(value);         return true;      }      catch      {          //escape the catch      }   }   return false;}
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist