
The Classy Resignation – 4 Tips
I want to make sure my readers saw this great article by CHRIS CARLSON, President and founder of Sales Talent Inc. The Classy Resignation – 4 Tips About a year ago, one […]
I want to make sure my readers saw this great article by CHRIS CARLSON, President and founder of Sales Talent Inc. The Classy Resignation – 4 Tips About a year ago, one […]
10 Ways to Write Better Emails (and Just Maybe Change the World) By Alexandra Franzen, December 30, 2015 Want to make a new year’s resolution that you can actually stick […]
Another company that is confused about the difference between an Account Rep and a Sales Engineer: http://www.sologig.com/jobs/-/J3J62H6JL5022Z8NW1H?Job_DID=J3J62H6JL5022Z8NW1H&siteid=0010S0777&ipath=JRKCV0A excerpt: Essential Duties and Responsibilities include the following. Other duties may be assigned. […]
Seekers, .Equals() is a strange animal. It’s used like:
1 2 |
if A.Equals(B) then ... |
And for standard objects it works fine:
1 2 3 4 5 6 7 8 |
Dim A As Integer = 1 Dim B As Integer = 1 If A.Equals(B) Then Console.WriteLine("equal") Else Console.WriteLine("in-equal") End If |
The are equal. But what about something non-standard?
1 2 3 |
Class Foo Public Property I As Integer End Class |
Should be pretty […]