FroH.LVT
FroH.LVT
CC#
Created by FroH.LVT on 2/9/2023 in #help
✅ Multiple level try-catch statement
I have a multiple try-catch statement and they behavior differently in different machine.
40 replies
CC#
Created by FroH.LVT on 2/1/2023 in #help
✅ XML Serialization
I want to customize XML serialization. This is sample class
public class Sample{
public List<TestCategory> TestList {get;set;}
}

public class TestCategory{
public string Value {get;set;} = "Random string";
}
public class Sample{
public List<TestCategory> TestList {get;set;}
}

public class TestCategory{
public string Value {get;set;} = "Random string";
}
12 replies
CC#
Created by FroH.LVT on 9/29/2022 in #help
Execute multiple steps with error checking [Answered]
I have multiple steps that would be executed one by one with error checking after completing each step. Eg:
void Start(){
Step1();
Step2();
....
StepN();

ResultHandling();
}
void Start(){
Step1();
Step2();
....
StepN();

ResultHandling();
}
If a step fails, all subsequent steps will not be executed and jump to ResultHandling. I had give it a try by adding a IsError variable and using it to check the execution state but it looks dirty. Are there any better way to implement this?
40 replies
CC#
Created by FroH.LVT on 9/20/2022 in #help
Interactive with Print Window and Save File Dialog
4 replies