Search Results

0
votes
3answers
199 views

Effect of casting to int in C#

Could someone take the time to explain me the language underpinnings here : int foo = myObject.SomeList.Count; for (int i = 0 ; i < foo ; i++) { myObject.SomeList.Add(bar); } …
0
votes
1answer
122 views

C#: Executing a SQL script stored as a resource

Newbie question : I would like to store lengthy .sql scripts in my solution and execute them programmatically. I've already figured out how to execute a string containing my sql script but I haven' …
0
votes

Can I find out the return value before returning while debugging in Visual Studio

You could try selecting "someTableAdapter.getSomeData();", right clicking on it and go for Quick Watch. …