In generic use, resolve type conversion issues

Source: Internet
Author: User

The problem is that the system has a field of character type to store some common system configurations, although the form of storage is a string, but the actual type used in the system may be string, bool, int, decimal.

This is the time to write a common method to get a variety of different types of return values, of course, the idea is to use generics. So the definition of this method is probably this:

T getvalue<t> (string key)

This approach involves the conversion of a string type into a generic type.

 Public T getsingleconfigvalue<t>(econfigkeyname key, T defaultvalue) {      var config = getconfig (key)       return (T) config;

Using the above method directly, the following compilation error will occur.

Check the data, the correct way is to use the Convert.changetype method:

typeof (T));

In generic use, resolve type conversion issues

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.