ShuggyCoUk
|
Registered User
|
Vanity page? Moi?
|
|
1d |
comment |
Pros. / Cons. of Immutability vs. Mutability +1 I edited the grammar, hope you don't mind |
|
1d |
revised |
Pros. / Cons. of Immutability vs. Mutability minor grammar edits since it's a useful post and already wiki |
|
1d |
comment |
Pros. / Cons. of Immutability vs. Mutability I really like how Option<T> works with anything, unlike Nullable that only allows reference types. I see why they did this but it's means putting the sort of null checking possible from spec# into c# proper will be that much more verbose. |
|
1d |
comment |
Pros. / Cons. of Immutability vs. Mutability it's showing that you don't, in many cases, actually need to write the loop yourself. That this only works well in languages that allow first class functions (and normally closures) means that few largely imperative languages allow it to work well but many imperative languages now support these constructs natively (mainly due to GC being more widespread as implementing non stack bound closures without this is painful) |
|
1d |
comment |
Pros. / Cons. of Immutability vs. Mutability indeed, they make it explicit, it's still not null though. Option<T> is strongly typed so you can still reflect on it as well as ToString it without worrying about NullReferenceException for example. |
|
1d |
revised |
Pros. / Cons. of Immutability vs. Mutability note ndepend use |
|
1d |
comment |
Pros. / Cons. of Immutability vs. Mutability you use them every time you autobox, every time you use a reference type as a key in a Dictionary you better hope it's immutable, any anon type (in c#, vb.net requires explicit Key markers) |
|
1d |
answered | Pros. / Cons. of Immutability vs. Mutability |
|
2d |
comment |
Flags enumeration with multiple zero values problem (TextFormatFlags) +1 I would add that defining multiple named values on the same enum and expecting any meaningful roundtrip to work is 'unrealistic' no matter how annoying. |
|
2d |
comment |
Less defined generics in c#? you can do it without the type being specified by yourself directly, but the compiler must at some stage know it to assign it to a strongly typed variable or, as you say by reflection assigned to a wider variable. |
|
2d |
comment |
Less defined generics in c#? this doesn't work: List<TimeSerie<Object>> blah = new List<TimeSerie<int>>(); causes Cannot implicitly convert type `System.Collections.Generic.List<TimeSerie<int>>' to `System.Collections.Generic.List<TimeSerie<object>>'(CS0029)]" |
|
2d |
answered | Recommended Multithreading books in .Net / C#? |
|
2d |
answered | Tibco Rendezvous - size constraints |
|
2d |
answered | Dumb completion in Visual Studio |
|
2d |
revised |
Why this performance difference? (Exception catching) bracket matching and SEH cost and comment on expense |
|
2d |
answered | Why this performance difference? (Exception catching) |
|
2d |
answered | Less defined generics in c#? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 4 |
comment |
C# why can’t a UInt32 be unboxed as UInt64? you could simply lift the code into your own project (assuming licensing restrictions are okay) then you have what you need, but only that perhaps reducing the heavy dependency to something you can take. |
|
Nov 30 |
comment |
How do I count the number of occurrences of a char in a String? not only that but this is possibly an anti optimization without taking a look at what the jit does. If you did the above on an array for loop for example you might make things worse. |
|
Nov 30 |
comment |
how to set all row heights of the wpf datagrid when one row height is adjusted Yeah, I like that you only pay for the feature significantly when someone actually resizes but it is costly. You can probably cache the columns in some way, drop the source and recreate it without regenerating the columns. |
|
Nov 29 |
comment |
Non-Random Weighted Distribution note that there are rather more than 24 timezones, though simply rounding them to the nearest hour will likely be ok. |
|
Nov 29 |
revised |
how to set all row heights of the wpf datagrid when one row height is adjusted perf notes |
|
Nov 29 |
answered | how to set all row heights of the wpf datagrid when one row height is adjusted |
|
Nov 29 |
accepted | I need a drag and drop control for C# winforms |
|
Nov 27 |
accepted | Are partial methods considered harmful? |
|
Nov 26 |
comment |
C# Extend array type to overload operators In fact Marc has done it all for you - use his answer :) |
|
Nov 26 |
comment |
C# Extend array type to overload operators very good point about the immutability |
|
Nov 26 |
comment |
C# Extend array type to overload operators encapsulation is almost always preferable to inheritance, especially when you want to extend a significant framework type. Note also that implementing == does NOT magically make a type work in a dictionary in c# (f# is a different matter) you must implement either IEquatable<self> or overrode Equals(object) as well as implementing GetHashCode() |
|
Nov 26 |
comment |
Are partial methods considered harmful? partial methods are not 'linked in' they simply compile to the method call (which is a straight non virtual call) or absolutely nothing. If you are always implementing the partial method and it would be an error to not implement it I would suggest you are abusing them since you will not be informed by the compiler that you haven't done the right thing... |
|
Nov 26 |
comment |
Are partial methods considered harmful? The community would appear to disagree, or at least make your prattling correct. delegates have considerable inherent power that an interface does not, consider unbound delegates for instance methods or the built in multicast behaviour (see how many people implementing their own events in java get that right). flippant remarks which are factually incorrect tend to result in -1's |
|
Nov 26 |
comment |
Are partial methods considered harmful? "On the other hand I don't, at runtime, add in these methods, as LINQ would, or does" what do you mean by this then, are you referring to conversion of an Expression<T> into a function? partial methods can never be added at runtime (well unless you dynamically launch csc or its equivalent)... |
|
Nov 26 |
comment |
Are partial methods considered harmful? @Foovanadil partial classes were introduced in 2.0 but partial methods were a c# 3.0 feature (perhaps why some people confuse them so readily with extension methods). |
|
Nov 26 |
comment |
Are partial methods considered harmful? I think you may be inferring a connection between partial methods and extension methods. None exists. Extension methods and partial methods are both compile time constructs true but partial ones are compiled in or not on the basis of whether the user bothers to supply an implementation, extension methods are just (sweet, sweet) sugar to a static method call and have no conditional aspect. Incidentally the conditional compilation you refer to is pretty much exactly what partial methods do under the hood, just automatically based on what you do in a separate file... |
|
Nov 26 |
comment |
Are partial methods considered harmful? I suspect they are in response to some of the subjectivity in the question... |
|
Nov 25 |
comment |
Are partial methods considered harmful? "a delegate is basically an interface that you forgot to design in. " This is entirely incorrect and I invite you to consider why microsoft didn't have to bother with anon interface implementations in c# compared to java and why lambdas are trivial to integrate into c# from 2.0 onwards. NOT Everything in the world is OO, stop trying to treat everything as a nail when all you understand is hammers. |
|
Nov 25 |
answered | Design pattern for adding attributes to a base class |
|
Nov 25 |
revised |
Are partial methods considered harmful? typos and grammar |
|
Nov 25 |
answered | Are partial methods considered harmful? |
|
Nov 25 |
comment |
C# why can’t a UInt32 be unboxed as UInt64? note that Micro is now open source so you might find most of your switch statement already written inside the Ext.StringBuilder for you at least. Good luck with your project |
|
Nov 24 |
awarded | ● Nice Answer |
|
Nov 24 |
accepted | C# why can’t a UInt32 be unboxed as UInt64? |
|
Nov 24 |
accepted | Which hash to use for file uniqueness in Java |
|
Nov 24 |
revised |
Which hash to use for file uniqueness in Java add link and example code |
|
Nov 24 |
comment |
Which hash to use for file uniqueness in Java no clue, but it's a reasonable answer so here's a +1 to offset |
|
Nov 24 |
comment |
Which hash to use for file uniqueness in Java I would add the proviso to this that forcing the whole file to be read into memory via a string is likely to be inefficient, require more memory than necessary and have implications if you were wanting to hash an ascii fileas raw bytes rather than forcing it to be become wide characters first (say if you wanted an external standard tool to also be able to hash it) |
|
Nov 24 |
awarded | ● Nice Answer |
|
Nov 24 |
answered | Regex implementation that can handle machine-generated regex’s: *non-backtracking*, O(n)? |
|
Nov 24 |
accepted | LINQ Get Distinct values and fill LIST |
|
Nov 24 |
revised |
C# why can’t a UInt32 be unboxed as UInt64? added microframework tag in case it brings someone out of the woodwork with more experience |
