Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
2 Posted Topics
Hello I have seen the following method syntax and I am trying to understand how this works/or doesn't: public class MyClass { public MyClass(); public MyClass(string param); } There is no implementation of the methods (constructors) and class is not declared virtual either... Is this something new in C# 3.0 …
In the above class: [code]class Point { public Point(double x, double y) { X = x; Y = y; } public double X { get; set; } public double Y { get; set; } }[/code] the copiler will throw an error as no implementation is provided to set and get …
The End.
serban