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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T13:05:35+00:00 2026-06-16T13:05:35+00:00

This is the code: for (int i = 0; i < files.Count; i++) {

  • 0

This is the code:

for (int i = 0; i < files.Count; i++)
{
    if (pdf1.Lightnings.Count == 0)
    {
        pdf1.Lightnings.Add(files[i]);
    }
    if (files[i] != pdf1.Lightnings[i])
    {
        pdf1.Lightnings.Add(files[i]);
    }
}

Both files and Lightnings are List<string>

For example in files I have 33 indexes (files names) and I want to add them to the Lightnings List.
But I want to check that if the file name from the List of files already exist in Lightnings so don’t add it again.

The way it is now I’m getting error since when the variable i=1 so the line:

if (files[i] != pdf1.Lightnings[i])

Throws an error since in Lightnings i have only one index [0] and in i=1 already

  • 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-16T13:05:37+00:00Added an answer on June 16, 2026 at 1:05 pm

    You can use the .Contains method:

    if (!pdf1.Lightnings.Contains(files[i]))
        pdf1.Lightnings.Add(files[i]);
    

    This will check that files[i] does not already exist in the collection before adding.

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

Sidebar

Related Questions

I'm downloading many pdf files using this code for (int i=0; i<[myBooks count]; i++)
I have a code that looks like this: int main () { fstream file;
I have this code: int se = (int) settings.GruppoSegreteria; var acc = db.USR_Accounts.Where( p
I'm trying to extract .zip files and I'm using this code: String zipFile =
I have two xml files, one of them is dev.xml which has this code
In this code I am checking all the files from folder root and add
I have problem running and debugging this piece of code: bool readSectionHeaders(char* path, int
This is my code: int main(int argc, char *argv[]){ FILE *fp; char *tmp, *tmp2,
My code looks somehow like this: //INCLUDES FILE *file; void handlesocket(int socket); int main(int
In this code: int main(int a, int b) { printf( main(int, int) works \n\n);

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.