Aug 14
Here’s a clever way to pre-screen candidates: post the job description in C# code. That’s what a company in Port Chester, New York did for a $80K-$100K .NET Developer position posted on CraigsList. The job description starts as:
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; namespace CandidateSearchApp { class Program { static void Main( string[] args ) { var candidateSearch = new CandidateSearch(); foreach (Candidate candidate in candidateSearch.GetCandidates()) { if (candidate.IsViable() && candidate.IsQualified()) candidate.SubmitResume(); } } }
And the necessary qualifications are summarized as follows:
return
canWriteCSharp
&& canWriteCPlusPlus
&& knowsOO
&& knowsInterop
&& knowsThreading
&& knowsEntity
&& knowsClientWCF
&& knowsLinq
&& knowsWinForms;
Article published on August 14, 2010
If you like this article, please share it: |
August 14th, 2010 at 1:58 pm
[…] This post was mentioned on Twitter by TechnologyLover and ComputerGeeker, Development Topics. Development Topics said: Developer Job Posted in C# – http://devtopics.com/73 […]