Scott Dorman
|
Registered User
|
Scott is a C# MVP and has been involved with computers in one way or another for as long as he can remember, but started professionally in 1993 as a systems administrator and has been working with .NET and C# since 2001. Although his primary focus right now is commercial software applications using Microsoft .NET technologies, he prefers building infrastructure components, reusable shared libraries and helping companies define, develop and automate process standards and guidelines. |
|
5h |
accepted | What causes a ListChangedType.ItemMoved ListChange Event in a BindingList<T>? |
|
1d |
accepted | Which user caused FileSystemWatcher events ? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 2 |
awarded | ● Nice Answer |
|
Nov 1 |
revised |
subsonic - parsing “*” - quantifier {x,y} following nothing edited tags |
|
Oct 27 |
comment |
Loading/Using Resource Dictionaries from a WinForms hosted WPF control You would be better asking this as a question rather than as a response to another question. |
|
Oct 14 |
comment |
Why do I need to use break? It also allows the JIT flexibility to rearrange the code for optimizations without worrying about breaking something due to fall-through. |
|
Oct 13 |
comment |
DefaultParameterValue in C# It's possible in C# 4.0, but not using the same syntax. |
|
Oct 12 |
comment |
Turn off Intellisense in VS 2008 for a single project @Cyclone: The .suo file holds your local "settings", such as what files were open when Visual Studio closed, the startup project, etc. I'm not certain of why it is hidden, but most likely because it is a binary file, so there isn't much you can actually see in it and nothing you could edit. Easily 95% of the "wierd" or "strange" problems I've seen/heard/experienced in Visual Studio are related to the .suo file and deleting it solves the problem. |
|
Oct 12 |
comment |
Resharper throws OutOfMemoryException on big solution @Ilya Ryzhenkov: Don't judge anything based on Beta 1 as there will be some major changes between Beta 1 and RTM. |
|
Oct 12 |
answered | Turn off Intellisense in VS 2008 for a single project |
|
Oct 10 |
comment |
C# Class function members declaration & implementation Interfaces really aren't the correct approach here as they can only contain the public members of the class. There is no way to achieve the same result as a header file in C#. |
|
Oct 10 |
comment |
C# Class function members declaration & implementation The interface will only contain the public methods of the class. |
|
Oct 10 |
answered | C# Class function members declaration & implementation |
|
Oct 10 |
comment |
C# Class function members declaration & implementation You can define all of your public member functions in an interface. You can not, however, define any accessibility. |
|
Oct 10 |
awarded | ● Nice Answer |
|
Oct 10 |
comment |
Can C# extension methods access private variables? Even though this is tagged as C#, this applies to any of the .NET languages which provide support for extension methods. |
|
Oct 10 |
revised |
Dynamic options dialog (using reflection) added 825 characters in body |
|
Oct 10 |
comment |
which is a better practice at exception handling? @Steve: Yes, if you don't throw an exception there is only a negligible perf hit to enter/exit the try block. The issue is that if it is an expected condition that a key might not exist there are much better/simpler mechanisms that should be used (ContainsKey or TryGetValue). |
|
Oct 10 |
comment |
Add last modified date in Visual Studio Unfortunately, if you're using TFS as your source control it doesn't support keyword expansion like this. There is an opensource check-in policy that allows it, but I've never used it. logsubstpol.codeplex.com. |
|
Oct 10 |
comment |
Dynamic options dialog (using reflection) @Groo: You could also do that. Pass an instance of your class to the panel's Initialize method, which would then reflectively inspect properties and populate itself. The biggest problem will be getting the layout of the controls, labels, etc. correct. It's much easier to write the panel yourself. |
|
Oct 10 |
answered | Dynamic options dialog (using reflection) |
|
Oct 10 |
revised |
Extract MSI from EXE edited title |
|
Oct 10 |
comment |
Dynamically adding items to a List<T> through reflection @John Sheehan: Why is the resulting serialized data intersting/important to you? There are other serializers available than just XmlSerializer, such as the WCF data contract serializer. It can easily be used and supports List<T>. Yes, it can generate some ugly looking XML, but in general that shouldn't matter. |
|
Oct 10 |
answered | Dynamically adding items to a List<T> through reflection |
|
Oct 10 |
comment |
What are some good usability guidelines an average developer should follow? Actually, this answers the question very well. The point of the pictures is to say "Look at Apple and Google, who have very successfull products. Now look at the simplicity of their user interfaces and compare that with your own business application." Just because it's a line of business application doesn't mean it should have a simple, clean, easy-to-use interface. No, this answer doesn't give a set of rules to follow, other than "keep it simple", but it is still a good answer. |
|
Oct 10 |
answered | What makes a good options dialog box? |
|
Oct 10 |
comment |
Fields vs Properties for private class variables You should actually try to avoid properties which have side effects. Properties are evaluated by all sorts of different things, including the debug watch, locals, and auto windows and the quick watch window. As a result, properties with side effects can cause lots of wierd behavior during debug sessions and can sometimes make finding a runtime error very difficult. |
|
Oct 10 |
comment |
DataGridViewRow not being Garbage Collected @Andy: I suspected that disposing the underlying datasource wouldn't have any effect, but it was worth checking just in case. The behavior you are seeing is very consistent with finalizable objects, particularly when there is no way to call Dispose() on them. Just one of the many reasons to avoid making objects finalizable unless there is a very good reason to do so. |
|
Oct 9 |
awarded | ● Nice Answer |
|
Oct 7 |
answered | Is int[] a reference type of value type? |
|
Oct 7 |
comment |
DataGridViewRow not being Garbage Collected @Andy: Yes, your understanding was incorrect. Since DataGridViewRow inherits from a finalizable object, it effectively becomes a finalizable object as well and is placed on the queue. What you are seeing is correct. Most likely the Clear() method does not also dispose of the rows, in which case you could manually dispose of them prior (or after) calling Clear() although I'm not certain if that will be possible. (It will depend on how things are implemented.) Optionally, you might be able to call Dispose() on the underlying datasource, which might work as well. |
|
Oct 7 |
answered | DataGridViewRow not being Garbage Collected |
|
Oct 7 |
comment |
catching exception-general doubts Regarding #2, exceptions should be used for error conditions not exceptional circumstances. |
|
Oct 7 |
comment |
catching exception-general doubts You've got the throw and throw ex backwards. throw will maintain the original stack trace while throw ex will break it. |
|
Oct 5 |
revised |
How do I avoid changing the Stack Size AND avoid getting a Stack Overflow in C# The "stackoverflow" tag is for questions related to the SO site. |
|
Oct 5 |
answered | C# .Net framework versioning |
|
Oct 5 |
awarded | ● Nice Answer |
|
Oct 4 |
answered | Which managed classes in .NET Framework allocate (or use) unmanaged memory? |
|
Oct 3 |
awarded |
● |
|
Sep 30 |
comment |
What features are people looking forward to in Visual Studio 2010? @Khanzor: There is still a while before testing stops, especially considering the public has only seen Beta 1, and that was out a while ago. |
|
Sep 30 |
comment |
What features are people looking forward to in Visual Studio 2010? Well...I voted to close because it's a duplicate. I do think it's a real question in the same way the duplicate is. stackoverflow.com/questions/1048728/… |
|
Sep 30 |
answered | What features are people looking forward to in Visual Studio 2010? |
|
Sep 30 |
revised |
What features are people looking forward to in Visual Studio 2010? edited tags |
|
Sep 30 |
answered | How well does Rule Engines performs? |
|
Sep 30 |
comment |
Word Completion C# VS2010 Keep in mind that this is Beta *1* and a lot of things are not fully functional. Wait until Beta 2 and see if it still happens. I'm thinking that this will work correctly. |
|
Sep 30 |
answered | How does the Visual studio populate the references tab? |
|
Sep 28 |
comment |
Best practices: throwing exceptions from properties How does this relate to disposable objects and the guidance that you should consider throwing ObjectDisposedException once the object has had Dispose() called and something subsequently asks for a property value? It seems like the guidance should be "avoid throwing exceptions from property getters, unless the object has been disposed in which case you should consider throwing an ObjectDisposedExcpetion". |
|
Sep 28 |
accepted | How to delete network executable files in use during NAnt Build |
|
Sep 27 |
comment |
How to split string into a Dictionary<string,string> +1, beat me to it by 30 seconds. |
