.Net Engineer Openings - Those Who Have Passion Need Apply

If you've been waiting for the right job to come along, specifically a job opening at one of the top companies in the country, your wait is officially over.   If you are passionate about programming and designing large scale Enterprise systems where you get to have a direct impact on the business, we need you!

We have several .Net Engineer openings available at my current employer Quicken Loans.  You can't be considered if you don't apply and you won't get preferential treatment with your resume if you don't contact me directly!

We have openings in several different areas and need people who have skills in all sorts of areas including Asp.Net, Smart Clients and back-end people with certain talents ( Biztalk, Workflow, WCF, etc).  The great thing about these positions is you will become part of a team who loves to automate business practices, embrace industry standards, embrace change and adopt early.  You'll be given all the tools you need to succeed as well as a culture that is unlike any you've probably seen. 

If you would like my email address run this code in a console application, or guess the output. 

using System;

using System.Collections.Generic;

using System.Text;

 

namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            Email myEmailAddress = new Email();

            myEmailAddress.Prefix = "keith";

            myEmailAddress.Connector = "@";

            myEmailAddress.Domain = "keithelder.net";

            Console.WriteLine(myEmailAddress.ToString());

            Console.ReadLine();

        }

    }

 

    class Email

    {

        private string prefix;

 

        public string Prefix

        {

            get { return prefix; }

            set { prefix = value; }

        }

 

        private string connector;

 

        public string Connector

        {

            get { return connector; }

            set { connector = value; }

        }

 

        private string domain;

 

        public string Domain

        {

            get { return domain; }

            set { domain = value; }

        }

 

        public override string ToString()

        {

            StringBuilder sb = new StringBuilder(3);

            sb.Append(this.prefix);

            sb.Append(this.connector);

            sb.Append(domain);

            return sb.ToString();

        }

 

    }

}

 

posted @ Tuesday, February 20, 2007 4:00 PM

Print

Comments on this entry:

# re: .Net Engineer Openings - Those Who Have Passion Need Apply

Left by AtomicInternet at 2/21/2007 8:20 AM
Gravatar

Possibly the most complicated anti-spam email display I've ever seen.

 re: .Net Engineer Openings - Those Who Have Passion Need Apply

Left by ButtonSwitcher at 2/28/2007 9:21 AM
Gravatar

Are you kidding me? I ate some bad mexican last weekend and sprayed this on the bowl without even thinking about it.

Your comment:






 
 
 
Please add 1 and 8 and type the answer here:
 

Live Comment Preview:

 
«August»
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456