Anyone got any e-books they can rapid shit on advanced C# or advanced SQL?
kthxbai
Name:
Anonymous2007-04-10 16:51 ID:H9czisR7
>>14
Yeah, doing that, is slow as fuck, adds about 5 seconds to a RS of 500,000 or so.
>>16
C# is pure OOP not procedural. C and C++ don't have Garbage Collection, therefore they don't have Dispose or Finalize stuff, which is used for optimization.
Also in C# you can't manipulate pointers (to an extent) so the back end is doing all of that for you. Thinks like is System.Collections.Generic.List built like a Linked List, or a Vector. Ect Ect.