Posts
 
Reputation
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
~159 People Reached
Favorite Forums
Member Avatar for Annex31b

Hi! How can I call the matching constructor [CODE=csharp] foreach (Animal d in AnimalBufferList) { this.Add( ....call matching copyconstructor.... (d) ); } . . . [/CODE] [CODE=csharp] abstract class Animal { public Animal (Animal d) { } . } } class Pig: Animal { public Pig(Pig d): base(d) { } …

Member Avatar for sknake
0
159