dannyshenl

Results 4 comments of dannyshenl

> no problem I'm just curious if there are any other ways to use it

> BTW, you could check the token in the `while` instead of breaking it. When should I break `while` ,if I didn't add `if (token.Token.IsCancellationRequested) break; ` these codes,I will...

Hello guys, are the functions involved in this issue still under development? I hope to implement the message type of new session ticket during handshake, but sslsteam does not seem...

我这边也有类似的需求,参考了所有的单元测试的样例代码,虽然实现了想要的效果但总体来说还是比较麻烦的。 ### 大概思路是分两个步骤: 1.修改固定格式模版文件 2.通过动态导出方式生成文件 ### 初始模版大概长这样: ![1690180696696](https://github.com/dotnetcore/Magicodes.IE/assets/23627134/e4576aac-df32-4345-90ac-ec667fd4e5fb) 大概的代码如下,通过遍历的方式获取目标单元格,定位到后再进行处理,主要是添加行列和同步单元样式。 ```C# foreach (var cell in sheet.Cells) { if (cell.Value != null && cell.Value is string valueString && valueString == "{{XPriceSubject}}") {...