vote up 1 vote down star

I'm writing an iterator that needs to pass around a mutable integer.

public IEnumerable<T> Foo(ref int valueThatMeansSomething)
{
    // Stuff

    yield return ...;
}

This nets me "Error 476 Iterators cannot have ref or out parameters".

What I need is this integer value to be modified in the iterator and usable by the caller of the iterator. In other words, whatever calls Foo() above wants to know the end value of valueThatMeansSomething and Foo() may use it itself. Really, I want an integer that is a reference type not a value type.

Only thing I can think of is to write a class that encapsulates my integer and permits me to modify it.

public class ValueWrapper<T>
    where T : struct
{
    public ValueWrapper(T item)
    {
        this.Item = item;
    }

    public T Item { get; set; }
}

So:

ValueWrapper<int> w = new ValueWrapper<int>(0);
foreach(T item in Foo(w))
{
    // Do stuff
}

if (w.Item < 0) { /* Do stuff */ }

Is there any class or mechanism to handle this already in the BCL? Any flaws with ValueWrapper<T> proposed above?

(My actual use is more complicated than the example above so handling the variable inside my foreach loop that calls Foo() is not an option. Period.)

flag

2 Answers

vote up 1 vote down check

Nope, I'm pretty confident there's nothing existing in the BCL that can do this. Your best option is precisely what you have proposed I think. The implementation of ValueWrapper really need not be any more complicated than what you have proposed.

Of course, it's not guaranteed to be thread-safe, but if you need that you can simply convert the automatic property into a standard one with a backing variable and mark the field as volatile (to insure the value is up-to-date at all times).

link|flag
Making a field volatile is not enough to ensure thread safety because writes to arbitrary value types are not guaranteed to be atomic by the C# specification. Volatile does not guarantee atomicity, it just eliminates some compiler-optimization-induced ordering issues. – Eric Lippert Jun 26 at 22:09
If you care about thread safety, use locks. – Eric Lippert Jun 26 at 22:10
@Eric: Yeah, good point. I originally wrote that it guarantees atomicity, but then quickly removed it as I realised this wasn't necessarily the cases. – Noldorin Jun 26 at 22:25
To clarify: I presume the right way to go is to declare the field as volatile and use locks? – Noldorin Jun 26 at 22:25
If every access to the data is correctly under a lock then it cannot possibly change while you're looking at it. So why would it need to be volatile? – Eric Lippert Jun 29 at 15:26
show 5 more comments
vote up 2 vote down

If you only need to write the value then another technique would be:

public IEnumerable<whatever> Foo(Action<int> setter) { ... }

int value = 0;
foreach(var x in Foo(x={value=x;}) { ... }

Coincidentally, I'll be doing a series on the reasons why there are so many goofy restrictions on iterator blocks in my blog in July. "Why no ref parameters?" will be early in the series.

http://blogs.msdn.com/ericlippert/archive/tags/Iterators/default.aspx

link|flag

Your Answer

Get an OpenID
or

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