如何在C#中调用方法

如何在C#中调用方法

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

问题描述

限时删除!!

如何调用在此类代码中定义的方法。需要在此代码中调用方法一个演示文稿

  private   class  MapPanel :Control 
{
public void demo()
{
// 此处代码
}
}



i无法通过简单地创建类的对象来获得。

解决方案




How to call a method which is define inside this type of the code. need to call method a demo present inside the this code

private class MapPanel : Control
{
   public void demo()
   {
      // Code here
   }
}


i am not able to get by simply creating object of the Class.

解决方案




这篇关于如何在C#中调用方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 02:24