本文介绍了如果在font变量中使用,如何处理字体对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 亲爱的专业人士, 我在c#winforms中有这样的代码: { 字体 myFont =新字体(Arial,12); ....一些代码 myFont myfont =新字体(Times New Roman,8); ....其他代码 myfont 。 。 。 } 在这种情况下, myFont 会在一次大括号内被处理掉,或者不是 或我们应该单独处理?请指导我。 提前致谢。 我尝试过: 尝试搜索谷歌并阅读有关垃圾收集的文档,但我没有清楚了解我想要的内容。解决方案 Dear Professionals,I have a code like this in c# winforms: { Font myFont = new Font("Arial",12); .... some code with myFont myfont = new Font("Times New Roman", 8); .... some other code with myfont . . .}In this case will myFont get disposed as one once out of the braces or notor should we dispose individually ? Please guide me on this.Thanks in advance.What I have tried:Tried searching on google and read documentation on garbage collection but I did not get a clear light on what I want. 解决方案 这篇关于如果在font变量中使用,如何处理字体对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-24 15:53