Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 821617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T02:40:12+00:00 2026-05-15T02:40:12+00:00

I meet a problem about type contraint of c# now. I wrote a pair

  • 0

I meet a problem about type contraint of c# now.

I wrote a pair of methods that can convert object to string and convert string to object.
ex.

static string ConvertToString(Type type, object val) {
 if (type == typeof(string)) return (string)val;
 if (type == typeof(int)) return val.ToString();
 if (type.IsSubclassOf(typeof(CodeObject))) return ((CodeObject)val).Code;
}

static T ConvertToObject<T>(string val) {
 Type type = typeof(T);
 if (type == typeof(string)) return (T)(object)val;
 if (type == typeof(int)) return (T)(object)int.Parse(val);
 if (type.IsSubclassOf(typeof(CodeObject))) return Codes.Get<T>(val);
}

where CodeObject is a base class of Employees, Offices …,
which can fetch by static method Codes.Get where T: CodeObject

but the code above cannot be compiled because error #CS0314

the generic type T of method ConvertToObject have no any constraint
but Codes.Get request T must be subclass of CodeObject

i tried use overloading to solve the problem but not ok.

is there any way to clear up the problem? like reflection?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T02:40:12+00:00Added an answer on May 15, 2026 at 2:40 am

    i tried to clear up the problem by reflection.

    if (type.IsSubclassOf(typeof(CodeObject))) {
        var baseMethod = typeof(Codes).GetMethod("Fetch<>", BindingFlags.Static | BidingFlags.Public, null, new Type[] {typeof(string)}, null);
        if (baseMethod != null) {
            var genericMethod = baseMethod.MakeGenericMethod(type);
            if (genericMethod != null)
                return (T)genericMethod.Invoke(null, new string[] { val });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I meet a problem about: Object of type 'System.Int64' cannot be converted to type
I ask a question about using XPath function there But I meet a problem
Today I meet a similar problem and it reminds me about this thread. In
Hey everybody, Im really confused about this problem. Ill try to describe it: The
I very rarely meet any other programmers! My thought when I first saw the
I'm using levenshtein algorithm to meet these requirements: When finding a word of N
I have developed some custom DAO-like classes to meet some very specialized requirements for
I am working on creating a .asmx webservice to meet the specific needs of
Any suggestions for good open source asp.net (C#) apps out there which meet as
What is the proper way to implement assignment by value for a reference type?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.