Tagged Questions
10
votes
4answers
1k views
Local variables with Delegates
This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more.
//The constructor
public Page_Index() {
...
7
votes
5answers
1k views
How to declare a local constant in C#?
How to declare a local constant in C# ?
Like in Java, you can do the following :
public void f(){
final int n = getNum(); // n declared constant
}
How to do the same in C# ? I tried with ...
4
votes
4answers
307 views
Variable sharing inside static method
I have a question about the variables inside the static method.
Does the variables inside the static method shares the same memory location or would the have separate memory?
Let me make an example.
...
2
votes
1answer
44 views
Emulating function static variables using threadstatic static fields?
For some static methods I realise it is extremely convenient to use a small array to temporarily store values during an operation. Said array is useful because you need indexing, but allocating that ...
2
votes
4answers
168 views
use of unassigned local variable `total`
I want to have a sum of all intervals , but I write this code I have an error stating: use of unassigned local variable total ?
enter TimeSpan total;
foreach (var grp in query)
{
TimeSpan interval ...
2
votes
2answers
437 views
C# reusable function to dump current value of local variables
I would like to write a reusable function I can call within any method to log a snapshot of all the local variables. For example:
void somemethod()
{
int a = 1;
string s = ...
2
votes
4answers
304 views
Use of unassigned local variable? C#
I have the following code:
double ticketPrice;
LoadOperation loGetTickets = ticketClass.loadTickets();
loGetTickets.Completed += (s, args) =>
{
foreach ...
1
vote
4answers
333 views
Error 2 Use of unassigned local variable 'Y'
Again i run into an error i don't mean to bug anyone but I'm getting an error on this code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ...
0
votes
6answers
346 views
Trouble with local variables in C#
I have a couple of variables that need to be assigned inside a for loop. Apparently, when the loop exits, C# ignores whatever happened in there, and the variables are returned to their original ...