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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:54:23+00:00 2026-05-26T16:54:23+00:00

I am writing an application in C#. In this application I am getting data

  • 0

I am writing an application in C#. In this application I am getting data from different ports. Here I want to create a queue with the name equal to the portnumber whenever a new port starts sending data. Can I create such a queue?

  • 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-26T16:54:24+00:00Added an answer on May 26, 2026 at 4:54 pm

    If you mean you want to create a queue of received data for each port that is being used, you’d be best having a keyed collection of queues. These queues would be keyed by the port number. So perhaps use a Dictionary<int, Queue<Data>>. Then when a request comes in, you can check to see if the port already has a queue; if so, add to that queue; if not, create the queue. i.e.

    private Dictionary<int, Queue<Data>> mPortQueues = new Dictionary<int, Queue<Data>>();
    
    public void ReceiveData(int portNumber, Data data)
    {
        Queue<Data> queue;
    
        // See if we have a queue
        if (!mPortQueues.TryGetValue(portNumber, out queue))
        {
            // No queue for this port, so create and cache
            queue = new Queue<Data>();
    
            mPortQueues.Add(portNumber, queue);
        }
    
        // Queue the data
        queue.Enqueue(data);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a GUI application using Django 1.1.1. This is the views.py: from
I'm writing this question from the standpoint of an ASP.NET application. However I realize
I'm writing an application using DDD techniques. This is my first attempt at a
I am writing a .NET 3.5 WPF application in C#. This application needs to
I'm writing a silverlight application that resembles a shopping cart system. This app can
I am writing a turbogears2 application. I have a table like this: class Order(DeclarativeBase):
I'm writing a WPF application that uses a component, and this component returns a
I'll try to explain this with an example. I'm writing a chat application. There
Ok, this might be a really odd problem. I am writing a web application,
I've followed this tutorial: http://anandhansubbiah.com/blog/writing-your-first-android-application/ , but no matter what I do, and what

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.