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 151101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:23:46+00:00 2026-05-11T09:23:46+00:00

Can someone explain this behavior in Generics? I have a generic function in C#

  • 0

Can someone explain this behavior in Generics?

I have a generic function in C#

protected virtual void LoadFieldDataEditor <T> (ref T control, string strFieldName) where T : Control {   //T can be different types of controls inheriting from System.Web.UI.Control   if (control is TextBox)   {    //This line gives an error    //((TextBox)control).Text = 'test';     //This line works!     (control as TextBox).Text = 'Test';   } } 

On a side note, can I use switch case when I am doing a ‘Control is TextBox’ type of checking?

EDIT:

Forgot to add the error message Sorry!

Here you go:

Error   3   Cannot convert type 'T' to 'TextBox' 

EDIT:

While we are talking about generics, I have another question. (Wasn’t sure If I had to start a new post)

The method has been expanded to include another generic type

protected virtual void LoadFieldDataEditor <T1, T2> (T1 control, T2 objData, string strFieldName) where T1 : Control where T2 : BaseDataType {   //I will need to access field1.    //I don't know at compile time if this would be SomeType1 or   //SomeType2 but all of them inherit from BaseDataType.     //Is this possible using generics? }  public abstract class BaseDataType {}  public class SomeType1 : BaseDataType {    string field1;    string field2; } 
  • 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. 2026-05-11T09:23:47+00:00Added an answer on May 11, 2026 at 9:23 am

    The rules for what a generic type can be converted to are quite tricky, and occasionally counterintuitive, as in this case. See section 6.2.6 of the C# spec for details. There are places where they could be laxer, and I think this is one of them. You can cast up to object and then down again, but that’s ugly.

    In this case the better solution would be:

    protected virtual void LoadFieldDataEditor <T> (ref T control,                                                 string strFieldName)      where T : Control {     TextBox textBox = control as TextBox;     if (textBox != null)     {         textBox.Text = 'test';     } } 

    Aside from anything else, this only requires a single execution time check instead of two.

    For the side note: no, you can’t use switch/case on types. (You could get the type name and switch on that, but it would be horrible.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 122k
  • Answers 122k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I don't believe there is a good answer to your… May 12, 2026 at 12:43 am
  • Editorial Team
    Editorial Team added an answer Put DISTINCT in your first select e.g. select distinct a.personid,… May 12, 2026 at 12:43 am
  • Editorial Team
    Editorial Team added an answer Yes, you can. ReferenceProperty has another handy feature: back-references. When… May 12, 2026 at 12:43 am

Related Questions

Consider this example: struct { int num; } s, *ps; s.num = 0; ps
I'm trying to add features to a preexisting application and I came across a
I am trying to numerically integrate an arbitrary (known when I code) function in
Can someone explain what exactly the string 0 but true means in Perl? As

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.