StreamWriter Issue: Line breaks - c#
First let me present the code:
private void AdicionarFormula(string x, string y, string Materia)
{
MessageBox.Show("%" + x + " = " + y + "#" + Materia);
StreamWriter Escritor = new StreamWriter(Properties.Settings.Default.ArquivoDeFormulas, true);
Escritor.WriteLine("%" + x + " = " + y + "#" + Materia);
Escritor.Close();
LerFormulas(true);
}
The issue is: instead of the output being "%x = y#Materia" it is actually "
%x = y
#Materia"
I dont want it to create a new line for "#Materia".
Your parameter 'y' contains char a newline. For example, try it in your code:
string.Format("%" + x + " = " + y + "#" + Materia).Replace("\n","")
Related
Loop to get all probabilities of combining words
I have text that contains spaces. I want all the possibilities. For example, merge a space and leave another. For example, this is the first possibility: the first word, then a space, the second word, then a space, then the third word. The second possibility: the first word, then without a space, then the second word, then a space, then the third word. The third possibility: the first word, then a space, then the second word, then without a space, then the third word ... etc.. I want to do this, but in a loop, especially if the number of words is more than five, six, or more. static void Main(string[] args) { string test = "aaa bbb ccc"; var ch = test.Split(' '); var t1 = ch[0] + " " + ch[1] + " " + ch[2]; var t2 = ch[0] + "" + ch[1] + " " + ch[2]; var t3 = ch[0] + " " + ch[1] + "" + ch[2]; var t4 = ch[0] + "" + ch[1] + "" + ch[2]; Console.WriteLine(t1); Console.WriteLine(t2); Console.WriteLine(t3); Console.WriteLine(t4); string test2 = "aaa bbb ccc ddd"; var ch2 = test2.Split(' '); var z1 = ch2[0] + " " + ch2[1] + " " + ch2[2] + " " + ch2[3]; var z2 = ch2[0] + "" + ch2[1] + " " + ch2[2] + " " + ch2[3]; var z3 = ch2[0] + " " + ch2[1] + "" + ch2[2] + " " + ch2[3]; var z4 = ch2[0] + " " + ch2[1] + " " + ch2[2] + "" + ch2[3]; var z5 = ch2[0] + "" + ch2[1] + "" + ch2[2] + " " + ch2[3]; var z6 = ch2[0] + " " + ch2[1] + "" + ch2[2] + "" + ch2[3]; var z7 = ch2[0] + "" + ch2[1] + "" + ch2[2] + "" + ch2[3]; Console.WriteLine(z1); Console.WriteLine(z2); Console.WriteLine(z3); Console.WriteLine(z4); Console.WriteLine(z5); Console.WriteLine(z6); Console.WriteLine(z7); Console.ReadLine(); }
So if we have n words we have n - 1 possible spaces. Let 0 be absence of space, when 1 be a presence of space: [0, 0, 0] => Word1Word2Word3Word4 [0, 0, 1] => Word1Word2Word3 Word4 [0, 1, 0] => Word1Word2 Word3Word4 [0, 1, 1] => Word1Word2 Word3 Word4 ... [1, 1, 1] => Word1 Word2 Word3 Word4 So far so good we should enumerate all 2 ^ (n - 1) binary masks: using System.Collections.Generic; using System.Linq; using System.Text; ... private static IEnumerable<string> Solution(params string[] words) { return Enumerable .Range(0, 1 << (words.Length - 1)) .Select(mask => { StringBuilder sb = new StringBuilder(words[0]); for (int i = 0; i < words.Length - 1; ++i) { if ((mask & (1 << i)) != 0) sb.Append(' '); sb.Append(words[i + 1]); } return sb.ToString(); }); } Demo (fiddle): var result = string.Join(Environment.NewLine, Solution("A", "B", "C", "D")); Console.WriteLine(result); Output: ABCD A BCD AB CD A B CD ABC D A BC D AB C D A B C D
The code you provided works for a limited number of words, but becomes impractical as the number of words increases. A more efficient way to generate all possibilities of a string containing spaces is to use loops and recursion. Here's an example of a function that takes a string and generates all possible combinations of that string (with and without spaces): private static List<string> GenerateCombinations(string[] words, int index) { if (index == words.Length) { return new List<string> { "" }; } var result = new List<string>(); var subCombinations = GenerateCombinations(words, index + 1); foreach (var subCombination in subCombinations) { result.Add(words[index] + subCombination); result.Add(words[index] + " " + subCombination); } return result; } You can call this function with the string you want to generate combinations for: string test = "aaa bbb ccc ddd"; var words = test.Split(' '); var combinations = GenerateCombinations(words, 0); foreach(var combination in combinations) { Console.WriteLine(combination); } The function uses recursion to generate all possible combinations of strings. The index parameter is used to keep track of the current word in the word array, and the recursion stops when the index equals the length of the word array. The function uses two lists to store combinations: one for the current index and one for the next index. The current list is added to the next list in two ways, with and without spaces. This approach will work for any number of words and will generate all possible combinations efficiently.
C# multiple increments
I have, code who do for me "x + y = z" if (command.Contains("+")) // string polecenie = "";' { polecenie = "{" + command + ")"; polecenie = polecenie.Replace("+", "}("); double a = Convert.ToDouble(Between(polecenie, "{", "}")); double b = Convert.ToDouble(Between(polecenie, "(", ")")); double wyn = a + b; richTextBox1.Text += a + " + " + b + " is " + wyn + "\r\n"; } And when 'command' is "4+5","3 + 4" or something like this code works, but when i try to do "4 + 3 + 23" it don't work. Final string with starting 'command' "4+5+6", polecenie is: "{4}(5}(6)"... The Between Method: public string Between(string content, string First, string Last) { string end = ""; int Plc1 = content.IndexOf(First) + First.Length; int Plc2 = content.IndexOf(Last); end = content.Substring(Plc1, Plc2 - Plc1); return end; } How can I do that? (I want it to work with all possible additions ("4+4","34+5+54","43+4+65+54"...)
You could use the DataTable object to not re-invent the wheel. richTextBox1.Text = string.Format("{0} is {1}\r\n", command, (new System.Data.DataTable()).Compute(command, string.Empty)); This would support +, -, *, / and % (mod) operators. For more: https://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx
how to load a variable in a for loop or linq
I have values assigned to a variable as follows: private string[] numbers = new string[] {"1" , "2" , "3" , "4" , "5"}; then i take my number variable and i filter through each as follows protected void display() { bonusdiv.Visible = true; panelbonus.InnerHtml = ""; foreach (string option in numbers) { string optiontext = option; if (option.Length == 1) { optiontext = "" + optiontext; } if (panelBonusselections.Contains(option)) { panelbonus.InnerHtml += "<input name=\"_bonus1_" + option + "\" id=\"/_bonus1_" + option + "\" type=\"submit\" value=\"" + optiontext + "\" class=\"optionselected\"/>"; } else { panelbonus.InnerHtml += "<input name=\"_bonus1_" + option + "\" id=\"/_bonus1_" + option + "\" type=\"submit\" value=\"" + optiontext + "\" class=\"option\"/>"; } } } now the question i pose is,i want to assign the values mentioned above into a single instance,something like numbers=[5]; //but this must still use the same logic as above to store the values from 1 up to 5.Then how do i cater for this change in my foreach loop? will it be something like the bellow? int numbers=[5] for (i=1,i>5, i++) { foreach (string option in numbers) { string optiontext = option; if (option.Length == 1) { optiontext = "" + optiontext; } if (panelBonusselections.Contains(option)) { panelbonus.InnerHtml += "<input name=\"_bonus1_" + option + "\" id=\"/_bonus1_" + option + "\" type=\"submit\" value=\"" + optiontext + "\" class=\"optionselected\"/>"; } else { panelbonus.InnerHtml += "<input name=\"_bonus1_" + option + "\" id=\"/_bonus1_" + option + "\" type=\"submit\" value=\"" + optiontext + "\" class=\"option\"/>"; }
You can use LINQ's Enumerable.Range() to create a sequence and Select() to project it to strings: string[] numbers = Enumerable.Range(1, 5).Select(i => i.ToString()).ToArray(); Or as a method: string[] GetNumbersStringArray(int length) { return Enumerable.Range(1, length).Select(i => i.ToString()).ToArray(); }
System.IO.File.WriteAllText outputs gibberish C#
I have a simple program in C# that is supposed to output a text file containing a sequence of character separated by commas. I also output the resulting sequence on the console and it looks fine, however, the text file is full of weird character and no commas. This is the output : 㔳㌬ⰵⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰳⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰴⰰⰰⰰⰳⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰲⰱⰱⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰲⰰⰳⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰱⰱⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰰⰰⰳⰰⰴⰴⰴⰰⰰⰰⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰰⰰⰰⰰⰴⰴⰴⰰⰰⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰱⰱⰱⰱⰱⰲⰰⰲⰱⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰰⰰⰰⰰⰰⰵⰰⰵⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰲⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰵⰰⰵⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰲⰰⰰⰵⰰⰰⰰⰰⰰⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰰⰱⰰⰰⰰⰰⰰⰰⰰⰰⰰⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰵⰰⰰⰰⰴⰴⰰⰰⰰⰰⰱⰱⰱⰱⰱⰱⰰⰰⰱⰱⰱⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰵⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰰⰰⰴⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰵⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰰⰰⰰⰰⰰⰵⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰰⰰⰵⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰳⰰⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰵⰰⰰⰰⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰰⰰⰰⰰⰰⰰⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴⰴ This is what is supposed to be outputted 35,35,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4,4,4,4,4,4,0,0,0,0,3,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4, 4,0,0,0,0,4,0,0,0,3,0,4,4,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4, 4,4,0,0,0,0,4,4,4,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0, 0,4,4,4,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,4,4,4,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0, 0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1,0, 0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0, 0,0,0,0,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0, 0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,3,0,4,4,4,0, 0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,4,4,4,0,0,4,4,4,0, 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,0,2,1,1,4,4,0,0,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0, 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,4,4,0,0,4,4,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,5,0,5,0,1,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0, 0,0,0,0,0,1,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0, 1,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,2,0,0,5,0,0,0,0,0,0,1,4,4,0,0, 4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,1,0,0,0,0,0,0,0,0,0,1,4,4,0,0,4,4,4,4,0, 0,0,0,0,0,5,0,0,0,4,4,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,4,4,0,0,4,4,4,4,0,0,0,5,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,4,4,4,4,4,0,0,4,4,4,4,0,0,0,0,0,0,0,5,0,0,0, 0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0, 4,4,4,4,4,4,4,0,0,0,0,0,4,4,4,4,4,4,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4, 4,4,4,0,0,3,0,4,4,4,4,4,4,4,0,0,0,0,0,5,0,0,0,4,4,4,4,0,0,4,4,4,4,4,4,4,4,0,0,0, 0,0,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,0,0,0,4,4,4,4, 4,4,4,4,0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,0, 0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, As I said, what is supposed to be outputted is the string that is directly passed into File.WriteAllText. Am I missing something ? I don't understand what i'm doing wrong. It seems to be working sometimes, but with other string it does not. I can find no relation between the sequences that works and those that do not. Here is the whole code, it's a simple program that read a bitmap and output the sequence depending on the pixel. It's badly & quickly written but it's supposed to work, i see no reason it shouldn't. class Program { static void Main(string[] args) { Console.WriteLine(args[0]); Bitmap Map = new Bitmap(args[0]); var MapRGB = Map.Clone(new Rectangle(0, 0, Map.Width, Map.Height), PixelFormat.Format32bppRgb); int height = Map.Height; int widht = Map.Width; string MapText = height.ToString() + "," + widht.ToString() + ","; for (int h = 0; h < height; h++) { for (int w = 0; w < widht; w++) { Color currentPixel = MapRGB.GetPixel(w ,h ); if (currentPixel.ToArgb() == Color.White.ToArgb()) { MapText = MapText + "0,"; } if (currentPixel.ToArgb() == Color.Black.ToArgb()) { MapText = MapText + "1,"; } if (currentPixel.ToArgb() == Color.Gray.ToArgb()) { MapText = MapText + "2,"; } if (currentPixel.ToArgb() == Color.Yellow.ToArgb()) { MapText = MapText + "3,"; } if (currentPixel.ToArgb() == Color.Green.ToArgb()) { MapText = MapText + "4,"; } if (currentPixel.ToArgb() == Color.Red.ToArgb()) { MapText = MapText + "5,"; } Console.Clear(); Console.WriteLine(args[0] + " WROKING " + w.ToString() + " OF " + widht.ToString() + " IN " + h.ToString() + " OF " + height.ToString()); } } Console.Clear(); Console.Write(MapText); System.IO.File.WriteAllText(Environment.CurrentDirectory + "/Map.bwn", MapText); Console.ReadKey(); } }
Not absolutely sure but could be an encoding issue. Use the other overload File.WriteAllText(String, String, Encoding) which takes a encoding type as argument like File.WriteAllText(filePath, stringMessage, Encoding.UTF8);
Adding and Changing Items in a array C#
I was wondering if you cloud help me? I have an array that consist of items and prices and qty. If the item exist it the array it must update the price and the qty, If it doesn't exits it must be added Here is my code that i have tried: if (line.Contains(ItemCode)) { string[] details = line.Split(new string[] { "|" }, StringSplitOptions.None); { for (int i = 0; i < details.Length; i++) { if (details[i].Contains(ItemCode)) { string[] line_details = details[i].Split(','); string replace = line_details[2].Trim() + "," + line_details[3].Trim(); double NewQty = double.Parse(Qty) + double.Parse(line_details[2]); double NewPrice = (double.Parse(UnitPrice) * double.Parse(Qty)); double NewUnitPrice = NewPrice + double.Parse(line_details[3]); string new_replace = NewQty + "," + NewUnitPrice; line = line.Replace(replace, new_replace); } } } } else { line = line + "\"Detail\",0," + Qty + "," + (double.Parse(UnitPrice) * double.Parse(Qty)) + "," + InclusivePrice + ",\"" + UnitUsed + "\"," + TaxType + "," + DiscountType + "," + DiscountPercentage + ",\"" + ItemCode + "\",\"" + Description + "\"," + SearchType + "," + "\"\"" + ",\"" + MultiStore + "\"|" + Environment.NewLine; } it is not working could you maby assist me on this?
Arrays in C# cannot have entries added to them after being initialised. You're better off using a List<String> instead, where you can add and remove entries from the list. Alternatively consider a Dictionary<Int32, String>, which would let you use the ItemCode as an identifier to make finding a given entry easier. As a furthur point, instead of storing all your item data in a delimited string, make a new Class for them, with the various details as properties, and then you can use a theoretical Dictionary<Int32, ItemObject> for better clarity.