Hello!
Here I have two different way to use casting.
Is any of these any better then the other?
Or is it just a question of taste.
newCards.Add((C ard)sourceCard. Clone());
newCards.Add(so urceCard.Clone( ) as Card);
//Tony
Here I have two different way to use casting.
Is any of these any better then the other?
Or is it just a question of taste.
newCards.Add((C ard)sourceCard. Clone());
newCards.Add(so urceCard.Clone( ) as Card);
//Tony
Comment