Zomboos
Zomboos
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
thanks
20 replies
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
i accidently called the function in the wrong place
20 replies
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
bit clumsy sometimes
20 replies
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
thanks
20 replies
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
alright, i know how to use breakpoint but i somehow forgot 😂
20 replies
CC#
Created by Zomboos on 9/4/2023 in #help
✅ Stackoverflow even though it should stop the recursive function
in addition it gives me stack overflow error but i stop it using the plusindex?
20 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
thanks
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
ye so reading the line and then reading the fields worked
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
that will help me on my way
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
thanks
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
alright
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
ye
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
now i think about it i can split the string into an array with the ;
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
wait i think uve actually helped me
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
and looking at everything parser can do
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
i was seeing what fields were
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
no that part is something i forgot to remove to be honest
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
if it helps heres what i have right now

using (TextFieldParser parser = new TextFieldParser(@"C:\Users\SemvanHaaften\source\repos\Vehicles\CollectionClasses\cars.csv"))
{
parser.TextFieldType = FieldType.Delimited;
parser.SetDelimiters(";");
while (!parser.EndOfData)
{
//Processing row
string[] fields = parser.ReadFields();
Console.WriteLine(parser.ReadLine());


Console.WriteLine();
}
}

using (TextFieldParser parser = new TextFieldParser(@"C:\Users\SemvanHaaften\source\repos\Vehicles\CollectionClasses\cars.csv"))
{
parser.TextFieldType = FieldType.Delimited;
parser.SetDelimiters(";");
while (!parser.EndOfData)
{
//Processing row
string[] fields = parser.ReadFields();
Console.WriteLine(parser.ReadLine());


Console.WriteLine();
}
}
26 replies
CC#
Created by Zomboos on 8/31/2023 in #help
❔ Csv textfieldparser
yes
26 replies
CC#
Created by Zomboos on 8/30/2023 in #help
❔ getproperties reset object properties to 0
Alright thank you all, il look into them
12 replies