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

  • Home
  • SEARCH
  • 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 551489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:23:58+00:00 2026-05-13T11:23:58+00:00

string value1 , value1 ; int length1 , length2 ; System.Collections.BitArray bitValue1 = new

  • 0
string value1 , value1 ;
int length1 , length2 ;
System.Collections.BitArray bitValue1 = new System.Collections.BitArray(Length1);
System.Collections.BitArray bitValue2 = new System.Collections.BitArray(Length2);

I’m looking for the fastest way to covert each string to BitArray with defined length for each string (the string should be trimmed if it is larger than defined length and if strings size is smaller remaining bits will be filled with false) and then put this two strings together and write it in a binary file .

Edit :
@dtb : a simple example can be like this value1 = “A” ,value2 = “B” and length1 =8 and length2 = 16 and the result will be 010000010000000001000010
the first 8 bits are from “A” and next 16 bits from “B”

  • 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-13T11:23:58+00:00Added an answer on May 13, 2026 at 11:23 am
            //Source string
            string value1 = "t";
            //Length in bits
            int length1 = 2;
            //Convert the text to an array of ASCII bytes
            byte[] bytes = System.Text.Encoding.ASCII.GetBytes(value1);
            //Create a temp BitArray from the bytes
            System.Collections.BitArray tempBits = new System.Collections.BitArray(bytes);
            //Create the output BitArray setting the maximum length
            System.Collections.BitArray bitValue1 = new System.Collections.BitArray(length1);
            //Loop through the temp array
            for(int i=0;i<tempBits.Length;i++)
            {
                //If we're outside of the range of the output array exit
                if (i >= length1) break;
                //Otherwise copy the value from the temp to the output
                bitValue1.Set(i, tempBits.Get(i));                
            }
    

    And I’m going to keep saying it, this assumes ASCII characters so anything above ASCII 127 (such as the é in résumé) will freak out and probably return ASCII 63 which is the question mark.

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

Sidebar

Ask A Question

Stats

  • Questions 305k
  • Answers 306k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer As described in this post, use <see cref="T:byte[]" /> May 13, 2026 at 9:11 pm
  • Editorial Team
    Editorial Team added an answer I think this is less of a programming issue and… May 13, 2026 at 9:11 pm
  • Editorial Team
    Editorial Team added an answer Maybe I'm missing something obvious .. but can't you just… May 13, 2026 at 9:10 pm

Related Questions

I was trying to create a visualizer for IDictionary or ICollection Then like the
We've got a page which posts data to our ASP.NET app in ISO-8859-1 <head>
This is my function: private IEnumerable<string> SeachItem(int[] ItemIds) { using (var reader = File.OpenText(Application.StartupPath
I have a List: List<int> list = new List<int> {1, 2, 3, 4, 5};
C#, Net 2.0 Here's the code (I took out all my domain-specific stuff, and

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.