本文介绍了Problema con构造函数,heredado de clase的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

霍拉·阿米戈斯(Hola amigos),C#asp.net和Tengo este esta问题在C#asp.net和Tengo este问题上 ser de lo mas sencillo de解析器.

在"public RepeaterCEA(int idLote)"队列中发生的错误,原因是"System.Web.UI.WebControls.RepeaterCommandEventArgs没有contiene un构造函数,queue tome 0参数.

El codigo es el siguiente:

Hola amigos, estoy empezando en la programacion C# asp.net y tengo este problema que ya me esta quitando mucho tiempo, y creo que para alguno de ustedes debe ser de lo mas sencillo de resolver.

Me esta generando el error en "public repeaterCEA(int idLote)" que dice "System.Web.UI.WebControls.RepeaterCommandEventArgs no contiene un constructor que tome 0 argumentos.

El codigo es el siguiente:

namespace SIISA.Controls.lotes
{
    public partial class ctrListaLotesConsolidados : System.Web.UI.UserControl
    {
        public delegate void RepeaterCommandEventHandler(repeaterCEA e);
        public event RepeaterCommandEventHandler RepeaterSelectedAction;

        public class repeaterCEA: RepeaterCommandEventArgs
        {            
            public Int32 idLote { get; protected set; }

            public repeaterCEA(int idLote)
            {
                this.idLote = idLote;
            }            
        }       
    }
}


Espero que me puedan ayudar,

Gracias de antemano.

朋友您好,我正在C#asp.net中开始编程,我遇到的这个问题使我长时间无法入睡,我认为对于任何人来说,解决起来都应该很简单.

我正在生成错误"public RepeaterCEA(int idLote)",该错误表示"System.Web.UI.WebControls.RepeaterCommandEventArgs不包含带有0个参数的构造函数.

代码如下:


Espero que me puedan ayudar,

Gracias de antemano.

Hello friends, I''m starting programming in C # asp.net and I have this problem that is keeping me awake a long time, and I think for any of you should be very simple to solve.

I is generating the error "public repeaterCEA (int idLote)" that says "System.Web.UI.WebControls.RepeaterCommandEventArgs not contain a constructor that takes 0 arguments.

The code is as follows:

推荐答案

public class repeaterCEA: RepeaterCommandEventArgs
        {
            public Int32 idLote { get; protected set; }
            // Default constructor added.
            public repeaterCEA() 
            {}
            public repeaterCEA(int idLote)
            {
                this.idLote = idLote;
            }
        }



希望你明白了.

谢谢
-Amit Gajjar



Hope you got it.

Thanks
-Amit Gajjar



这篇关于Problema con构造函数,heredado de clase的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 02:32