Welcome to RightHand's community place Sign in | | Help

C++ cryptics

I saw today this line of code in a newsgroup and couldn't resist to compare it to the same code written in C#.

array<System::Data::DataRow^>^ rows = myTable->Select("...");

Now, compare the managed C++ code above to the C# code below:

DataRow[] rows = myTable.Select("...");

I wonder which one is more clear and readable...

Published 29. avgust 2007 2:09 by Miha Markic
Filed under:

Comments

Anonymous comments are disabled