Search results for query: *

  1. N

    Question For Loop preventing Dictionary search from Jumping file to file

    jmcilhinney CAN you help me avoid the loop from skipping some words?
  2. N

    How do you publish a Database Account Management web page

    How can i delete a question?
  3. N

    How do you publish first before you Host a Database Account Management panel web page

    How do you publish first before you Host a Database Account Management panel web page? Second, after publishing, how do you host a database account panel online? I understand you don't publish the webAPI and the project at the same time How can publish then host the Database? Must I copy it...
  4. N

    Question For Loop preventing Dictionary search from Jumping file to file

    ok, I have seen that i+1 cannot work, but how about i=+1 at the end of the statement? How can that be implemented so that it will go through the whole file first before proceeding to the next file? And only after it has done that, it will add i=+1, which will allow it to search in the next...
  5. N

    Question For Loop preventing Dictionary search from Jumping file to file

    So, now this will not jump from Dictionary to Dictionary? I will remove the code once I have your approval. It was jumping from Dictionary 1 if it has AAA|BBB in Dictionary 1, to Dictionary 2 to replace BBB with CCC instead of allowing Dictionary 1 to complete its searches. private...
  6. N

    Question For Loop preventing Dictionary search from Jumping file to file

    I want to check each dictionary procedurarly. When I use this: for (int i = 0; i <= 7; i++); It is jumping from Dictionary to Dictionary looking for matches without allowing one Dictionary to complete its search first. I want it to prevent it from jumping from dictionary to Dictionary...
  7. N

    Question Printing text file contents on a console using HTTPClient

    jmcilhinney Is there a way to implement that in HTTPClient? Am really stuck!
  8. N

    Question Printing text file contents on a console using HTTPClient

    How do you print a Text file on a console application with formatting like below in HTTPClient in C# Language? Here is how my textFile looks like: Hi|Fine! Here is all my code: using System; using System.Net.Http; using System.Threading.Tasks; class Program { static void Main() {...
Back
Top Bottom