本文介绍了如何在C#中将修饰符设置为公共的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

//我已经创建了按钮控件

//I have created button control

public class myButton : System.Windows.Forms.Button
    {
       public myButton()
        {
          //.............
        }
    }



但是当我使用此按钮时,在属性修饰符=私有(默认)中
我希望作为修饰符=公共(默认)



but when I use this button, in property modifiers=private (default)
i want as modifiers=public (default)

推荐答案




这篇关于如何在C#中将修饰符设置为公共的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 13:10