Jeff Yates

12,755
Reputation
984 views

Registered User

Name Jeff Yates
Member for 1 year
Seen yesterday
Website
Location Michigan
Age 32
I'm an Englishman living in the US. I graduated from UMIST in 2000 with a M.Eng in Computer Systems Engineering. I have been a professional software engineer since then.

I started out working on data analysis tools for motorsport using C++. For the last few years I have been working with C# on diagnostic tools for electronic control modules. I have experience with XML as well as WiX installations, and other technologies though I wouldn't call myself an expert (there's always so much more to learn!). I've also worked with Silverlight.

In my spare time, I love to write and record songs, and I am always just about to finish my first novel.
Nov
22
comment LINQ to XML: How to clone nodes while retaining annotations?
Hmm, that's a shame, but yes, of course it would. Could you get away with wrapping the new instance with something that can hold the original BaseUri?
Nov
20
comment Internet Explorer Developer Tool with Silverlight application.
@SVI: Not that I was aware of, but apparently there is SilverlightSpy (see Mike's answer)
Nov
20
accepted Internet Explorer Developer Tool with Silverlight application.
Nov
20
answered Internet Explorer Developer Tool with Silverlight application.
Nov
20
answered LINQ to XML: How to clone nodes while retaining annotations?
Nov
20
answered How Can I Test the Silverlight Install Process
Nov
18
accepted Any examples of DHT based business app?
Nov
17
comment Debugging Silverlight and Silverlight Unit Tests
I use Chrome, IE and Firefox for all my testing. I can debug in all of them using the workaround below.
Nov
17
revised Debugging Silverlight and Silverlight Unit Tests
added 401 characters in body
Nov
17
answered Debugging Silverlight and Silverlight Unit Tests
Nov
16
awarded  Popular Question
Nov
13
revised Can a Type Derive from Itself?
formatting
Nov
13
answered Simple VB or C# questions for an interview?
Nov
13
comment int.TryParse = null if not numeric?
@Stefan: My guess is that the OP is validating string format using this method as well as enforcing a fixed string format. Therefore, they can parse 10,000 and turn it into 10000, for example. Just a guess though.
Nov
11
comment Programmatic way to determine if code is running in Silverlight?
You don't need an exhaustive cross product. You only test the configurations that are valid builds. There's no point in testing anything else.
Nov
11
accepted Programmatic way to determine if code is running in Silverlight?
Nov
5
comment Haskell Parsec compile error
You're welcome. It was a guess.
Nov
4
comment Programmatic way to determine if code is running in Silverlight?
It's nice but it should be noted that while this hides #if stuff (why you'd want to, I don't know), this will result in larger assemblies for Silverlight deployment as they will contain both versions of the code. Also, it means you can only use types that exist in both uses.
Nov
4
revised Programmatic way to determine if code is running in Silverlight?
deleted 2 characters in body
Nov
4
answered Programmatic way to determine if code is running in Silverlight?
Nov
4
revised Haskell Parsec compile error
added 369 characters in body; deleted 267 characters in body; added 35 characters in body
Nov
4
answered Haskell Parsec compile error
Nov
3
awarded  Nice Answer
Nov
3
answered What common routines do you put in your Program.cs for C#
Nov
3
revised Is there a way to view .NET Framework library source code online?
Formatting and reordering of suggestions
Nov
3
accepted NET: Best Practices/guidelines for dividing namespaces between files?
Oct
29
revised How do I hide some of the default control properties at design-time (C#)?
formatting
Oct
27
answered Can anyone answer why Silverlights XAML code is so ugly?
Oct
27
comment Can anyone answer why Silverlights XAML code is so ugly?
Wow, angst ridden much?
Oct
26
comment Visual Studio 2010 beta 2 and WiX?
I have added an answer that covers the gist of the comment. :) I hope it works for you.
Oct
26
answered Visual Studio 2010 beta 2 and WiX?
Oct
26
comment Visual Studio 2010 beta 2 and WiX?
@Will: you need the 3.5 release for 2010 support - it's still in beta.
Oct
26
comment Visual Studio 2010 beta 2 and WiX?
This may seem obvious but has to be asked. Did you install the WiX 3.5 support for 2010? There was a new one built 3 days ago. wix.sourceforge.net/releases/3.5.1023.0
Oct
26
comment What features do you wish were part of C#?
Looks like no language change required for the filtered events. See my update. :)
Oct
26
revised What features do you wish were part of C#?
Rx framework
Oct
16
comment Partial Classes in C#
@Roger: I disagree. If your class has nested types for completely valid encapsulation reasons, it will create large and unwieldy files that warrant the use of partials but don't indicate the need for a redesign.
Oct
14
answered Rebranding Application Resources in .NET 2.0
Oct
12
comment What are the biggest gotchas in Silverlight 2.0?
@Ray: Then I have no idea why it doesn't work for me. :)
Oct
12
comment Using different versions of DLL in one application
@Jared: I actually agree with you (even before you replied) but SO won't let me remove my downvote unless you edit. Sorry about that.
Oct
12
comment Using different versions of DLL in one application
This doesn't make sense. Silverlight runs on the client in the Silverlight plug-in (moonlight) whereas the WCF service executes on the server. There is no reuse of the same CLR here. If anything this is a service contract and datatype marshalling issue.
Oct
12
comment Using different versions of DLL in one application
Also, the Silverlight runs on the client and the WCF on the server. I would assume this error relates to the WCF server portion and therefore is unrelated to Silverlight unless your service contract happens to persist a strongly typed value or set of values that cannot be recreated in WCF. In such cases, you should change your contract to contain types supported properly at both sides of the service.
Oct
12
comment Using different versions of DLL in one application
This doesn't make much sense. WCF runs on a different runtime engine than Silverlight.
Oct
12
comment C++ char** -> vector<string> -> string -> char** parsing problem
Technically, that should be "null-terminated" lest someone start terminating their strings with '0' rather than '\0'.
Oct
12
answered Is C# a versatile language?
Oct
12
comment Is C# a versatile language?
It's not some kinky freaky gymnast, if that's what you're asking.
Oct
8
comment What is the second meaning of a single ampersand in C#?
@Steve: According to OP's question, they already know this behaviour exists as a way to not short-circuit boolean logic.
Oct
8
comment How can I get the Silverlight ComboBox to resize the dropdown after I change ItemsSource?
See my recent solution below.
Oct
8
awarded  Popular Question
Oct
8
accepted prevent height sizing at design time
Oct
8
revised What is the second meaning of a single ampersand in C#?
grammar fix