FastScriptReload icon indicating copy to clipboard operation
FastScriptReload copied to clipboard

If there is a #region directive within a partial class, it may cause errors during a merge.

Open Shiling1234 opened this issue 1 year ago • 0 comments

partial class classA { #region testRegion int a =1; #endRegion }

partial class classA { #region region2 int b=1; #endregion }

after merge, will cause #region count and #endregion count not match

If classA has an inner class, the result of the merge may create an additional outer inner class.

Shiling1234 avatar Nov 10 '24 09:11 Shiling1234