Shambhu
Can a non static class have static constructor?
Posted by Shambhu in .Net | C# on Dec 16, 2012
  • 0
  • 6
  • 4404
Do you know the answer for this question? Post it below.
Guest
Posted by Sandeep Mhatre on Apr 23, 2013
  • 10

yes it is possible, Refer this link http://sandeepmhatre.blogspot.com/2013/03/constructors.html

Posted by jeevan prasad on Feb 12, 2013
  • 9

yes we can create the static constructor in non static class... it is parameter less and how static constructor called only once when how many number of objects created to the that class static fields only one reference

Posted by Dinesh Bhoje on Jan 17, 2013
  • 4

Yes Normal class can have static constructor but only one. it automatically called only once when any of class member is first time called or access.. even at instance creation. And important thing is static constructor should be parameterless...

Posted by Shambhu on Dec 16, 2012
  • 1

Yes, it is possible.
But we have to create an object of the class inside the static constructor and then initialize the non static member through the object reference.

And to initialize static member of the class too.


class Class2
{
int a;
static Class2()
{
Class2 p = new Class2();
p.a = 45;
System.Console.WriteLine(p.a);
}
static void Main()
{

}
}

Posted by Ravikumar G on May 14, 2013
  • 0

Yes, It can have.. http://msdn.microsoft.com/en-us/library/ms173116%28v=vs.80%29.aspx

Posted by tanuj khurana on Feb 25, 2013
  • 0

but we can not use this value every time variable is 0


SPONSORED BY
Nevron Chart
PRIVACY POLICY | TERMS & CONDITIONS | SITEMAP | CONTACT US | ABOUT US | REPORT ABUSE
2013© C# Corner. All contents are copyright of their authors.