I've been interviewing a lot of .NET programmers lately and I haven't met one that knows what IDisposable is or what it is used for. Is it really unreasonable to expect someone with 4-6 years experience to know that?
|
closed as not constructive by casperOne♦ Nov 30 '11 at 1:59
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Nope, sorry. If they don't know |
|||||||||||||
|
|
It's not unreasonable to expect somebody to understand For those of us who came from Delphi or C++ and have had to do manual resource management in the past, this is blindingly obvious, but for people who learned in Java or Python or even VB, not so much. And you'll never get a compiler warning if you forget to So with that in mind, I wouldn't immediately fail somebody in an interview if they didn't understand the meaning and proper usage of I think it's a good question to ask, and if somebody had never heard of it before, I would probably give a very quick explanation and then ask a follow-up question: "The .NET Garbage Collector can only manage memory. Another red flag, perhaps an even bigger one, is if somebody says that you need to put every So keep asking the question, but maybe temper your responses. Don't end the interview immediately if somebody can't answer it. Consider that a .NET programmer never actually has to learn this in order to write functioning (albeit buggy) software. |
|||
|
|
|
I wouldn't think so. If you don't understand what IDisposable is, how can you appropriately understand when to use a My guess would be that a lot of people know to put certain code in using statements, but don't know why which is rather scary. |
|||||||||||||||
|
|
I would expect developers with that level of experience to know IDisposable. However, it is a complex subject, if you want to dig into all the details. Joe Duffy wrote a rather elaborate post on the subject some years ago. I wouldn't expect all developers to be able to cover all the gory details in that post. |
|||
|
|
I'm quite surprised that the knowledge of IDisposable is too low. Whenever you have a resource that must be closed, and you don't use the using statement, you have to use IDisposable. |
|||||
|
|
Having just had a job interview today I wish I had been asked a question like that! All programmers should know about IDisposable. It's arguably the most important interface to understand because of the I find it unthinkable that a programmer with 4-6 years experience doesn't know about this. |
||||
|
|
|
Yes, it is unreasonable. Few programmers that are college age level + 3 to 5 years (the always preferred candidate) have ever written pure Win32 code to know what an "unmanaged resource" looks like. It doesn't typically ever come up in their college years, Java is the teaching language nowadays, a language that doesn't have the same pattern. There are a large number of .NET programmers that have written .NET code for years and shipped production code without ever disposing anything. I'd recommend other interview questions:
That tests for insight rather than rote programming. Perhaps more appropriate for the second interview? |
|||||||||||||||
|