The variable 'variable_name' is either undeclared or was never assigned

前端 未结 16 1007
甜味超标
甜味超标 2020-12-15 03:14

I have a question related to the error on the title. Im working with c# and Visual Studio 2010.

I have a form declared as \"public class FormularioGeneral : Form\",

16条回答
  •  被撕碎了的回忆
    2020-12-15 03:48

    Don't put anything other than InitializeComponent(); in the constructor. You can put the code from there in events like Load().

提交回复
热议问题