Ash
|
Registered User
|
Developer, primarily in the Microsoft technology stack. .NET Framework is great, but many of the best ways to actually use it seem to come from outside the "Microsoft Universe" "nosce te ipsum" |
|
3h |
comment |
Can someone copyright a SQL query? "Somewhat libellous". Sorry, how does libel come into it considering the query writer is completely anonymous? I find the strong comments very interesting. Seems to have hit a raw nerve. |
|
18h |
comment |
Execution-time performance of code in class created using reflection versus a ‘normal’ class. Interesting point about security checks. That may be what my colleague was referring to, although they didn't say so at the time. |
|
18h |
comment |
Execution-time performance of code in class created using reflection versus a ‘normal’ class. Marc, We use Activator.CreateInstance() and cast the returned object to a known class type. From then on it's always accessed through this strongly typed instance. We're working with c#2 and moving to C#3/4 hopefully soon. |
|
18h |
comment |
Execution-time performance of code in class created using reflection versus a ‘normal’ class. Any references such as web pages, blogs etc? |
|
18h |
comment |
Execution-time performance of code in class created using reflection versus a ‘normal’ class. You misunderstand my question, see the NB. |
|
18h |
asked | Execution-time performance of code in class created using reflection versus a ‘normal’ class. |
|
Dec 1 |
comment |
What do you use to keep notes as a developer? @Chris S, saying it requires 2 files is also a "bit of a lie". It depends on entirely the browser you use. Firefox and IE work perfectly with just a single html file. Opera, Safari require the Tiddlysaver add-in (which is a jar, from memory). |
|
Dec 1 |
comment |
Can anyone guess what protocol these packets belong to? You'll probably find more people with experience in packet analysis on ServerFault.com. |
|
Nov 27 |
accepted | Is it more efficient to compare ints and ints or strings and strings |
|
Nov 26 |
comment |
Best programming based games Actually reading the question makes it clear it's definitely not Core War! Instead it's likely to be either RoboWar, RobotWar or C-Robots. |
|
Nov 26 |
comment |
Thread-safe blocking queue implementation on .NET @Shrike, not strange at all. Just yet another example of how bad StackOverflow search is. It's so bad that everyone will tell you to just use Google (and the 'site:' command) instead. |
|
Nov 26 |
revised |
Using The Controls Of One Form Into Another added 948 characters in body |
|
Nov 26 |
comment |
Using The Controls Of One Form Into Another Why implement your own pub/sub model when you can use the built .NET event model to do this? Also, you only need pub/sub between forms if you're displaying multiple forms simultaneously. In most applications a simple "ApplicationData" object can be passed around between forms to allow communication of data. This is both a simpler approach and is the first step on separation of presentation from data. |
|
Nov 26 |
revised |
Using The Controls Of One Form Into Another Added example |
|
Nov 26 |
answered | Using The Controls Of One Form Into Another |
|
Nov 25 |
comment |
Hidden Features of C#? If all of these listed features actually are "hidden" the C# language designers are doing a really bad job. ;) |
|
Nov 25 |
comment |
.NET Framework built-in interfaces, recommendations when building a custom data structure? Thanks David, some useful tips. You misunderstood my point on not implementing interfaces. I mean the entire interface, not just certain methods. ie, if you don't want to provide cloneable functionality, don't implement ICLoneable at all. I've changed the wording in my question. |
|
Nov 25 |
revised |
.NET Framework built-in interfaces, recommendations when building a custom data structure? added 16 characters in body |
|
Nov 25 |
comment |
.NET Framework built-in interfaces, recommendations when building a custom data structure? Yes, it's not a simple answer, but I'm interested in any guidelines for choosing between similar sounding interfaces, for example. |
|
Nov 25 |
comment |
.NET Framework built-in interfaces, recommendations when building a custom data structure? Yes, I realise this. My question is what guidelines, conventions etc that help choosing between similar looking interfaces (IEquatable, IEqualityComparer) etc. I say this in my question. |
|
Nov 25 |
comment |
.NET Framework built-in interfaces, recommendations when building a custom data structure? Thanks, I'll take a look. |
|
Nov 25 |
revised |
.NET Framework built-in interfaces, recommendations when building a custom data structure? added 1 characters in body |
|
Nov 25 |
asked | .NET Framework built-in interfaces, recommendations when building a custom data structure? |
|
Nov 25 |
comment |
Which is faster: multiple single INSERTs or one multiple-row INSERT? When it is simple to set up profiling (such as in this situation) relying on others opinions and theory from books only, is asking for trouble. There are many factors such as hardware, network and design approach that can impact speed. Checking it on your platform is the only way to be sure. |
|
Nov 24 |
comment |
.NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH! You're actually right, done. Are you really 12? You write more clearly than most people 3 times your age! It's great to see younger people on StackOverflow. If you want to be a programmer later on you'll learn a huge amount of good information here. |
|
Nov 24 |
revised |
.NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH! Added bold. |
|
Nov 23 |
accepted | .NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH! |
|
Nov 23 |
answered | How does the Apple iTunes web site launch the iTunes application on my computer when I click the blue “Launch iTunes” button? |
|
Nov 23 |
revised |
.NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH! added 14 characters in body |
|
Nov 23 |
answered | .NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH! |
|
Nov 19 |
awarded | ● Notable Question |
|
Nov 19 |
awarded | ● Popular Question |
|
Nov 18 |
answered | When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>? |
|
Nov 16 |
answered | What amount of documentation is needed for a non-trivial one-man software project |
|
Nov 16 |
answered | 7.1 < 7.10 - ordering numbers |
|
Nov 15 |
revised |
Most useful and least known .Net Framework API/Attribute/etc Added link to the real duplicate question |
|
Nov 14 |
comment |
Is 4-5 years the “Midlife Crisis” for a programming career? @Arnis, I don't think making sushi is quite the same as changing your whole career path after ten years of being a developer. Try getting to the age of 35 and deciding you want to become a lawyer/doctor/journalist/accountant etc, you'll be at least 45 before you get to a basic level of skill required. |
|
Nov 14 |
revised |
Manually implementing high performance algorithms in .NET added 338 characters in body |
|
Nov 14 |
comment |
Manually implementing high performance algorithms in .NET Good tip. In this case I'm currently just using basic Int32 comparisons. I did find that sorting a simple int array is much faster than a List<int>. It appears that there is a "Callvirt" for every get and set on the List<int>. Removing this by using an array halved (at least) the execution time. |
|
Nov 13 |
comment |
Manually implementing high performance algorithms in .NET Interesting points on unsafe mode. I tried to avoid this by default, but in some cases pointer arithmetic might be the only option. I agree completely about the optimization approach, I also try not to get caught up on micro optimizations; improving the overall design may give much better approach improvements. |
|
Nov 13 |
comment |
Manually implementing high performance algorithms in .NET Yes, I compiled in Release mode, however I didn't explicitly check for any optimizations, I assumed setting Release is enough. I'll have to look at this, so thanks for the tip. Thanks aso for the link to the SSCLI too. Interesting to see if/how Sort is implemented. |
|
Nov 13 |
revised |
Manually implementing high performance algorithms in .NET added 97 characters in body; added 10 characters in body |
|
Nov 13 |
asked | Manually implementing high performance algorithms in .NET |
|
Nov 13 |
answered | Why is quicksort better than mergesort? |
|
Nov 13 |
comment |
Why is quicksort better than mergesort? @Dark Shikari, I have made some corrections by editing your answer directly. See this page for a clear demonstration of the clarifications: sorting-algorithms.com/quick-sort In summary default quicksort is worst on a list with few unique items, not a reverse sorted list. Therefore this cannot be avoided by ensuring the list is randomly ordered. |
|
Nov 13 |
revised |
Why is quicksort better than mergesort? Worst case can't be avoided with standard quicksort. See http://www.sorting-algorithms.com/quick-sort |
|
Nov 12 |
answered | Set ClientRectangle in custom form in C# |
|
Nov 12 |
comment |
is it good to have primary keys as Identity field @Jan, the problem with GUIDs is that there is no meaningful way to order them.. Therefore an index on a GUID column is nowhere near as useful as an Index on an integer column. |
|
Nov 11 |
comment |
Convince me to move to .net 3.5 (from 2.0) @andy and others, you should really read about the deployment/install "problems" some real life desktop applications have had by using .NET 3.5. Paint.NET, GiniPic, AI War and so on. If you're buuilding in house apps, where deployment is more under your control, great, if your users are "the general public" going to .NET 3.5 mainly because of the "cool features" is naive. |
|
Nov 9 |
awarded |
● |
