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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:33:22+00:00 2026-06-11T14:33:22+00:00

I have a method to get what items are not checked in a checkbox

  • 0

I have a method to get what items are not checked in a checkbox list like so:

public static string[] GetNotSelectedCheckboxes(CheckBoxList list)
{
    ArrayList values = new ArrayList();
    for (int counter = 0; counter < list.Items.Count; counter++)
    {
        if (!list.Items[counter].Selected)
        {
            values.Add(list.Items[counter].Value);
        }
    }
    return (String[])values.ToArray(typeof(string));
}

I now have a requirement to get not selected items in a radiobutton list, I copied the same method and instead of having a CheckBoxList as parameter I have a RadioButtonList.

public static string[] GetNotSelectedRadioButtons(RadioButtonList list)
{
    ArrayList values = new ArrayList();
    for (int counter = 0; counter < list.Items.Count; counter++)
    {
        if (!list.Items[counter].Selected)
        {
            values.Add(list.Items[counter].Value);
        }
    }
    return (String[])values.ToArray(typeof(string));
}

Now the code does exactly the same thing and I read a bit about generic methods, is this where I should use one? I had a look at it but didn’t get the syntax right and I’m not sure how to use list.Items if I don’t specifically specify it as a radio or checkbox list.

Should I use a generic method here and any input on how I should go on about it?

Thanks in advance.

  • 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-06-11T14:33:24+00:00Added an answer on June 11, 2026 at 2:33 pm

    You could use Generics… but in this case, it seems easier just to use polymorphism using the base class for the simple data list controls

    public static string[] GetNotSelectedRadioButtons(ListControl list)
    

    If you want to implement generics:

    public static string[] GetNonSelectedItems<T>(T list) where T : ListControl
    {
        ... do your stuff
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a method like this: public JObject Get(int id) { return new JObject(new
I have this method to get a generic repository out of a dictionary: public
I have a HashMap<String,String> and there is a static method which returns this map
I have a template that displays the list of items. It has one checkbox
I have this method: public List<RequestItemVO> getRequestItem() { //compiled code throw new RuntimeException(Compiled Code);
I have a method called Get and a call back method called X written
In the following code, i have a method to get a Vector of persons
I have a get method passing in an object of type Store to the
I have this code in a prepareForSegue method // Get destination view UIViewController *viewController
I have a written a method to get all the records and return in

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.