In c#.Net Application For DataGridview binding which method is faster in below two case?Why..?
1)looping-Using For loop
2)Databinding direct using Dataset
Answer Posted / velmahesh
Answer is , Databinding direct using Dataset..
Reason for if we store database values to dataset. then
values are binding shortly..
but, if use the for loop, that statement will execute
upto limit. so, it will take some seconds..
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
How many types of constructors are there in c#?
Why do I get a security exception when I try to run my c# app?
Which is more efficient for loop or while loop?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
What is scaffolding in c#?
What are verbatim strings in c#?
What is the difference between string and stringbuilder in c#?
Explain About .NET Framework
Can I do things in il that I can't do in c#?
Why should you override the tostring() method?
What is sorted list in c#?
Where do we use static class in c#?
Can abstract class have constructor in c#?
What are custom attributes in c#?
Is post back in c#?