565,942 reputation
18530694553
bio website csharpindepth.com
location Reading, United Kingdom
age 36
visits member for 4 years, 7 months
seen 18 mins ago
stats profile views 556,360

Author of C# in Depth.
Currently a software engineer at Google, London.
Usually a Microsoft MVP (C#, 2003-2010, 2011-)

Sites:

Email: skeet@pobox.com (but please read my blog post on Stack Overflow-related emails first)


13m
comment C# [XmlElement] attribute doesn't implicitly cast Type?
One way of detecting whether or not you're running under Mono is to see whether Type.GetType("Mono.Runtime") returns null
14m
comment C# [XmlElement] attribute doesn't implicitly cast Type?
@DanielJohnson: That would be good. A short but complete console app that reproduces the problem would be ideal.
16m
comment C# [XmlElement] attribute doesn't implicitly cast Type?
@DanielJohnson: That doesn't matter. You can still run your application under Mono and it would still pick up the Mono implementation. Really and truly.
29m
comment How to put my variables in the object's constructor
@JoroSeksa: That's got nothing to do with it. If you have pairs of related values, that pairing is something to encapsulate in itself, so you can represent the idea of "the minimum and maximum speed" (for example) in a single value. I'd argue that you could also add useful methods to that type - such as validating a value - but that's a different matter.
30m
comment Creating a DateTime in a specific Time Zone in c# fx 3.5
@ChrisMoschini: Yes, there are abbreviations - which are ambiguous, so shouldn't be used as identifiers. (CET for example.) In order to get away from ambiguity, you've had to get away from the standard. There's a significant difference between someone using your library and someone using Noda Time: anyone using Noda Time can interoperate with any other system using TZDB. There are an awful lot of those. How many other systems are using your unambiguous abbreviation set? (There are other advantages in terms of identifying a time zone rather than "half" a time zone (e.g. BST) as well.)
32m
comment C# [XmlElement] attribute doesn't implicitly cast Type?
@DanielJohnson: I think you're still missing my point. I didn't suggest you were using mono-specific libraries. I suspect you're using the Mono implementation of the standard libraries (at execution time).
1h
comment How to put my variables in the object's constructor
Why don't you have a single type representing the combination "min and max"? It would make things much simpler.
1h
comment C# How do I shorten my double when I converted bytes to megabytes?
Well string formatting can round instead of just truncating, too. This just fundamentally feels wrong to me - it's not like Math.Round can even return a value which has exactly two decimal digits. It can return the closest double value to that, but that's not the same thing. (If you suggested using decimal instead and rounded, that would be better IMO.) Personally I think it's important to distinguish between operations which are logically to do with the value itself, and operations which are only actually about textual conversions. This feels more like the latter to me.
1h
comment C# : What Will Be The Greatest? Multiple Task or Single for One Job?
@AdityaHeartly: Which what should you remove? Sorry, I really don't think we've got enough context to help you at the moment.
1h
comment C# How do I shorten my double when I converted bytes to megabytes?
Why lose data early? It's only the textual representation which needs truncation, so IMO it's when the OP converts from double to string that he should make the change.
1h
answered C# How do I shorten my double when I converted bytes to megabytes?
1h
comment C# : What Will Be The Greatest? Multiple Task or Single for One Job?
@AdityaHeartly: In itself that's okay - but it's pointless if you just start the task and await it, when you know the task itself won't consume much time. It's like starting a new thread and then calling Join on it. It would make sense if you were doing CPU-intensive work in the other thread, and wanted to avoid blocking the UI thread or something like that - but it's not the case here.
2h
comment C# : What Will Be The Greatest? Multiple Task or Single for One Job?
@AdityaHeartly: Sorry, it's not really clear what you mean by any of that. You'd have to show significantly more code to explain what you mean. But if you're able to listen for input asynchronously as well, you should be able to handle all of this reasonably simply.
2h
comment Cannot read from a closed textreader after iterating through IEnumerable once
This code would be easier to read without using query expressions at all: var lines = File.ReadLines("...").Select(line => line.Split(' ')[1]).ToList();
2h
comment Cannot read from a closed textreader after iterating through IEnumerable once
That should be okay, although it definitely would load the file twice. (If you don't want to do that, just use File.ReadAllLines.) I can't reproduce your problem, I'm afraid.
2h
comment C# : What Will Be The Greatest? Multiple Task or Single for One Job?
@AdityaHeartly: It depends on what exactly you mean by "block" and what the rest of your code does - but it won't do anything worse than your previous code, which awaited the newly created task. How well do you understand what await does?
2h
answered C# : What Will Be The Greatest? Multiple Task or Single for One Job?
2h
comment Retrieve XML content from SQL Server database
Well LINQ to XML isn't really LINQ - did you mean you didn't want to use LINQ to XML? Why not? What about XmlDocument etc?
2h
comment Data at the root level is invalid. Line 2, position 12
But what does the file look like when you're getting the exception?
2h
comment C# [XmlElement] attribute doesn't implicitly cast Type?
@DanielJohnson: Does that work in a MonoGame project though? I don't know anything about MonoGame, but judging by the name I'd expect it to be running in Mono...