Constructor (object-oriented programming): Difference between revisions

Content deleted Content added
LazyEditor (talk | contribs)
Add note about "ctor"
Line 30:
End Sub
End Class
=== [[C#]] ===
=== Example ===
 
Class myClass
{
public myClass(int a, string b)
{
}
}
 
==Constructors Simplified (with [[pseudocode]])==