Allen Cai

Results 98 comments of Allen Cai

I don't want these static resource files to be exposed to users or visible in any directory on the computer. And to prevent users from tampering with these static resource...

Of course. Let's embrace open source !!! I will take the time to organize the code and then share it. Here are a few methods and events to keep an...

I personally recommend the first option, which gives more flexibility while reducing the possibility of other dependencies.

Does anyone have any suggestions?

I'm having the same problem. Change `record` to `class` and the problem disappears. Other than that, is there any interim solution?

Yes, that's right. :) Like this: ```C# ... ConstructorInfo realMethod = type.GetConstructor(BindingFlags.Public | BindingFlags.NonPublic .....); ... ```

I seem to know that `HSSFSimpleShape` can be converted to `HSSFPicture`. ```C# HSSFSimpleShape simpleShape = ...; HSSFPicture picture = new HSSFPicture(simpleShape, simpleShape.Anchor); ```