vote up 0 vote down star

I have a code that looks like this:

using (DC dc = new DC())
{
    f(dc.obj, a);
}


void f(DC dc, int a)
{
    ...
    dc.obj = a;
}

It doesnt work - complains about object reference and non-static fields. This is a console application, so it has Main() function. How should I make it work? I tried adding references as it asked:

I have a code that looks like this:

using (DC dc = new DC())
{
    f(ref dc.obj, a);
}


void f(ref DC dc, int a)
{
    ...
    dc.obj = a;
}

but it still didnt work

flag

2 Answers

vote up 3 vote down check

This has nothing to do with the using statement. You are trying to call a non-static member function from Main, which is static. You cannot do that because 'f' is an instance method, i.e., you must call it on or from an instance of your Program class. So, you need to make your function f static.

link|flag
vote up 2 vote down

f is an instance method, presumably in the Program class, right? If you are calling f from Main, then there is no instance of Program, because Main is a static method. Change f to be static:

static void f(DC dc, int a) { ... }
link|flag
Mine was first :P – Ed Swangren Oct 30 at 4:18
u got it ;)))))))))))) – LikeToCode Oct 31 at 1:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.