CombineLatest没有完全执行。 ()=> {this.loading = false}未执行。
private void btnApply_Click(object sender, EventArgs e)
{
using (StreamWriter stream = new StreamWriter(richTbWrite.Text, true))
{
stream.WriteLine("some text here");
}
}
callFunction(test)函数可以正常执行,但是之后没有达到()=> this.loading = false。请告知如何完成Combinelatest。
谢谢。