vote up 1 vote down star

WeakReference implementation in .NET has an IsAlive Property.

1) Are there any performance/behavior differences between using the IsAlive property or testing whether the Target property is not null?

2) IsAlive is a redundant property?

Thanks.

flag

2 Answers

vote up 3 vote down check

1) No. Internally, IsAlive is doing almost exactly the same logic as checking target, and seeing if it's null.

2) Somewhat, since checking whether ref.Target != null is pretty much equivelent to ref.IsAlive. However, IsAlive is more expressive, and potentially easier to understand when maintaining the code.

link|flag
vote up 3 vote down

Looking at the source code, there is no difference in behavior between them. obj.IsAlive is simply more convenient and readable then obj.Target != null.

link|flag

Your Answer

Get an OpenID
or

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