User ShuggyCoUk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:57:59Z http://stackoverflow.com/feeds/user/12748 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1863440/is-there-any-scenario-where-the-rope-data-structure-is-more-efficient-than-a-stri/1901656#1901656 4 Answer by ShuggyCoUk for Is there any scenario where the Rope data structure is more efficient than a string builder ShuggyCoUk 2009-12-14T15:43:51Z 2009-12-14T17:10:54Z <p>The documentation for the <a href="http://www.sgi.com/tech/stl/Rope.html" rel="nofollow">SGI C++ implementation</a> goes into some detail on the big O behaviours verses the constant factors which is instructive.</p> <p>Their documentation assumes <em>very long strings being involved</em>, the examples posited for reference talk about <em>10 MB strings</em>. Very few programs will be written which deal with such things and, for many classes of problems with such requirements reworking them to be <em>stream based</em> rather than requiring the full string to be available where possible will lead to significantly superior results. As such ropes are for non streaming manipulation of multi megabyte character sequences when you are able to appropriately treat the rope as sections (themselves ropes) rather than just a sequence of characters.</p> <p>Significant Pros:</p> <ul> <li>Concatenation/Insertion become nearly constant time operations</li> <li>Certain operations may reuse the previous rope sections to allow sharing in memory. <ul> <li>Note that .Net strings, unlike java strings do not share the character buffer on substrings - a choice with pros and cons in terms of memory footprint. Ropes tend to avoid this sort of issue.</li> </ul></li> <li>Ropes allow deferred loading of substrings until required <ul> <li>Note that this is hard to get right, very easy to render pointless due to excessive eagerness of access and requires consuming code to treat it as a rope, not as a sequence of characters.</li> </ul></li> </ul> <p>Significant Cons:</p> <ul> <li>Random read access becomes O(log n)</li> <li>The constant factors on sequential read access seem to be between 5 and 10</li> <li>efficient use of the API <em>requires</em> treating it as a rope, not just dropping in a rope as a backing implementation on the 'normal' string api.</li> </ul> <p>This leads to a few 'obvious' uses (the first mentioned explicitly by SGI).</p> <ul> <li>Edit buffers on large files allowing easy undo/redo <ul> <li>Note that, at some point you may need to write the changes to disk, involving streaming through the entire string, so this is only useful if most edits will primarily reside in memory rather than requiring frequent persistence (say through an autosave function)</li> </ul></li> <li>Manipulation of DNA segments where significant manipulation occurs, but very little output actually happens</li> <li>Multi threaded Algorithms which mutate local subsections of string. In theory such cases can be parcelled off to separate threads and cores without needing to take local copies of the subsections and then recombine them, saving considerable memory as well as avoiding a costly serial combining operation at the end. </li> </ul> <p>There are cases where domain specific behaviour in the string can be coupled with relatively simple augmentations to the Rope implementation to allow:</p> <ul> <li>Read only strings with significant numbers of common substrings are amenable to simple interning for significant memory savings.</li> <li>Strings with sparse structures, or significant local repetition are amenable to run length encoding while still allowing reasonable levels of random access.</li> <li>Where the sub string boundaries are themselves 'nodes' where information may be stored, though such structures are quite possible better done as a <a href="http://en.wikipedia.org/wiki/Radix%5Ftree" rel="nofollow">Radix Trie</a> if they are rarely modified but often read.</li> </ul> <p>As you can see from the examples listed, all fall well into the 'niche' category. Further, several may well have superior alternatives if you are willing/able to rewrite the algorithm as a stream processing operation instead.</p> http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability/1863693#1863693 2 Answer by ShuggyCoUk for Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-07T23:48:00Z 2009-12-08T00:00:17Z <p>Many functional languages are non pure (allow mutation and side effects).</p> <p>f# is for example, and if you look at some of the very low level constructs in the collections you'll find that several use iteration under the hood and quite a few use some mutable state (if you want to take the first n elements of a sequence it's so much easier to have a counter for example).</p> <p>The trick is that this is something to generally:</p> <ol> <li>Use sparingly</li> <li>Draw attention to when you do <ul> <li>note how in f# you must declare something to be mutable</li> </ul></li> </ol> <p>That it <em>is</em> possible to largely avoid mutating state is evidenced by the large amount of functional code out there. For people brought up on imperative languages this is somewhat hard to get your head round, especially writing code previously in loops as recursive functions. Even trickier is then writing them, where possible, as tail recursive. Knowing how to do this is beneficial and can lead to far more expressive solutions that focus on the logic rather than the implementation. Good examples are those that deal with collections where the 'base cases' of having no, one or many elements are cleanly expressed rather than being part of the loop logic.</p> <p>It is really 2 though that things are better. And this is best done via an example: </p> <p>Take your code base and change <em>every</em> instance variable to readonly[1][2]. Change back only those ones where you need them to be mutable for your code to function (if you only set them once outside the constructor consider trying to make them arguments to the constructor rather than mutable via something like a property.</p> <p>There are some code bases this will not work well with, gui/widget heavy code and some libraries (notably mutable collections) for example but I would say that most reasonable code will allow over 50% of all instance fields to be made readonly.</p> <p>At this point you must ask yourself, "why is mutable the default?". Mutable fields are in fact a <em>complex</em> aspect of your program as their interactions, even in a single threaded world, have far more scope for differing behaviour; as such they are best highlighted and drawn to the attention of the coder rather than left 'naked' to the ravages of the world.</p> <p>It is notable that most functional languages have either no concept of null or make it very hard to use because they work, not with variables, but with named <em>values</em> whose value is defined at the same time (well scope) the name is. </p> <p><hr></p> <ol> <li><p>I find it unfortunate that c# did not copy java's concept of immutability with local variables too. Being able to assert emphatically that something doesn't change helps make intent clear whether a value is on the stack or in an object/struct.</p></li> <li><p>If you have NDepend then you can find these with <code>WARN IF Count &gt; 0 IN SELECT FIELDS WHERE IsImmutable AND !IsInitOnly</code></p></li> </ol> http://stackoverflow.com/questions/1861411/recommended-multithreading-books-in-net-c/1861693#1861693 0 Answer by ShuggyCoUk for Recommended Multithreading books in .Net / C#? ShuggyCoUk 2009-12-07T17:51:02Z 2009-12-07T17:51:02Z <p>I strongly suggest, based on his past excellent work, waiting for <a href="http://www.bluebytesoftware.com/blog/2009/09/29/2ndEditionOfConcurrentProgrammingOnWindows.aspx" rel="nofollow">the second edition</a> of Joe Duffy's seminal Concurrent Programming on Windows if new features in the 4.0 .Net release are what you are after.</p> <p>Since you are looking for info on an, as yet unreleased, API anything you get now, as opposed to March 2010 is likely to be not quite up to date (or worse will have inaccurate advice - a serious flaw in concurrent programming as small, seemingly trivial aspects can be very important).</p> <p>To tide you over in the mean time you can read his <a href="http://www.bluebytesoftware.com/blog/default.aspx" rel="nofollow">blog</a></p> http://stackoverflow.com/questions/1689780/tibco-rendezvous-size-constraints/1861572#1861572 2 Answer by ShuggyCoUk for Tibco Rendezvous - size constraints ShuggyCoUk 2009-12-07T17:36:44Z 2009-12-07T17:36:44Z <p>From the Tibco docs on Very Large Messages:</p> <blockquote> <p>Rendezvous software can transport very large messages; it divides them into small packets, and places them on the network as quickly as the network can accept them. In some situations, this behavior can overwhelm network capacity; applications can achieve higher throughput by dividing large messages into smaller chunks and regulating the rate at which it sends those chunks. You can use the performance tool to evaluate chunk sizes and send rates for optimal throughput.</p> <p>This example, sends one message consisting of ten million bytes. Rendezvous software automatically divides the message into packets and sends them. However, this burst of packets might exceed network capacity, resulting in poor throughput:</p> <pre><code>sender&gt; rvperfm -size 10000000 -messages 1 </code></pre> <p>In this second example, the application divides the ten million bytes into one thousand smaller messages of ten thousand bytes each, and automatically determines the batch size and interval to regulate the flow for optimal throughput:</p> <pre><code>sender&gt; rvperfm -size 10000 -messages 1000 -auto </code></pre> <p>By varying the -messages and -size parameters, you can determine the optimal message size for your applications in a specific network. Application developers can use this information to regulate sending rates for improved performance.</p> </blockquote> <p>As to actual limits the Add string function takes a C style ansi string so is theoretically unbounded but, given the signature of the AddOpaque</p> <pre><code>tibrv_status tibrvMsg_AddOpaque( tibrvMsg message, const char* fieldName, const void* value, tibrv_u32 size); </code></pre> <p>which takes a u32 it would seem sensible to state that the limit is likely to be 4GB rather than 64MB.</p> <p>That said using Tib to transfer such large packets is likely to be a serious performance bottleneck as it may have to buffer significant amounts of traffic as it tries to get these sorts of messages to all consumers. By default the rvd buffer is only 60 seconds so you may find yourself suffering message loss if this is a significant amount of your traffic.</p> <p>Message overhead within tibco is largely as simple as:</p> <ol> <li>the fixed cost associated with each message (the header)</li> <li>All the fields (type info and the field id) </li> <li>Plus the cost of all variable length aspects including: <ol> <li>the send and receive subjects (effectively limited to 256 bytes each)</li> <li>the field names. I can find no limit to the length of the field names in the docs but the smaller they are the better, better still don't use them at all and use the numerical identifiers</li> <li>the array/string/opaque/user defined variable length fields in the message</li> </ol></li> </ol> <p>Note: If you use nested messages simply recurse the above.</p> <p>In your case the payload overhead will be so vast in comparison to the names (so long as they are reasonable and simple) there is little point attempting to optimize these at all.</p> <p>You may find you can considerable efficiency on the wire/buffered if you transmit the strings in a compressed form, either through the use of an rvrd with compression enabled or by changing your producer/consumer to use something fast but effective like deflate (or if you're feeling esoteric things like QuickLZ,FastLZ,LZO,etc. Especially ones with fixed memory footprint compress/decompress engines)</p> <p>You don't say which platform api you are targeting (.net/java/C++/C for example) and this will colour things a little. On the wire all string data will be in 1 byte per character regardless of java/.net using UTF-16 by default however you will incur a significant translation cost placing these into/reading them out of the message because the underlying buffer cannot be reused in those cases and a copy (and compaction/expansion respectively) must be performed. If you stick to opaque byte sequences you will still have the copy overhead in the naieve implementations possible through the managed wrapper apis but this will at least be less overhead if you have no need to work with the data as a native string.</p> http://stackoverflow.com/questions/1792534/dumb-completion-in-visual-studio/1861035#1861035 0 Answer by ShuggyCoUk for Dumb completion in Visual Studio ShuggyCoUk 2009-12-07T16:18:44Z 2009-12-07T16:18:44Z <p>The extensibility model in 2010 is much simpler but is (obviously) still a moving target.</p> <p>It should be possible to get something simple using <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.language.intellisense%28VS.100%29.aspx" rel="nofollow">the intellisense part of this</a> to supply an <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.language.intellisense.icompletionsource%5Fmembers%28VS.100%29.aspx" rel="nofollow">ICompletionSource</a> which merges in whatever values you want to supply along with the existing implementations results.</p> <p>Monitoring the current buffer for names should involve some playing around with the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.text.editor.itextview%5Fproperties%28VS.100%29.aspx" rel="nofollow">ITextView</a> and <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.text.itextbuffer%28VS.100%29.aspx" rel="nofollow">ITextBuffer</a>.</p> <p>There is an example of modifying the <a href="http://editorsamples.codeplex.com/wikipage?title=Intellisense%20Presenter%20Implementation&amp;referringTitle=IntelliSense%20Presenter" rel="nofollow">presentation layer</a> on codeplex but you should be able to use that as a base on which to try altering the data side of things.</p> http://stackoverflow.com/questions/1860174/why-this-performance-difference-exception-catching/1860371#1860371 0 Answer by ShuggyCoUk for Why this performance difference? (Exception catching) ShuggyCoUk 2009-12-07T14:39:30Z 2009-12-07T14:46:42Z <p>This is an awful micro benchmark.</p> <p>The latter 'optimized' loop has as a compile time invariant that test is always null, thus there is no need to even bother compiling in the attempted assignment. You are in effect testing an empty loop with throwing an exception every time. </p> <p>A really good jit might even be able to entirely remove the loop, noting that the loop has no body, thus no side effects beyond incrementing the counter and that the counter itself is unused (this is unlikely since such an optimization would have little utility in the real world). </p> <p>Exceptions are reasonably expensive to throw (in relation to conventional branching control flow)[1] due mainly to 3 things:</p> <ol> <li>all exceptions are reference types and thus (for now) are heap allocated and subsequently garbage collected.</li> <li>The stack levels populated into the exception (This is proportional to the The distance the stack unwinds - something you example fails completely to measure)</li> <li>Going into the exception handling code skips all the nice things like branch prediction that let today's deeply pipelined processor keep themselves doing something useful</li> </ol> <p>Throwing and catching exceptions within a tight loop is almost certainly a massively flawed design anyway but if you seek to measure this impact you should write a loop that actually does that.</p> <p><hr></p> <ol> <li>expensive here being a <strong>very</strong> relative term. You can still do tens of thousands of them per second on modest hardware. </li> </ol> http://stackoverflow.com/questions/1840765/less-defined-generics-in-c/1860006#1860006 1 Answer by ShuggyCoUk for Less defined generics in c#? ShuggyCoUk 2009-12-07T13:33:37Z 2009-12-07T13:33:37Z <p>Note that some 'mumbling' is possible in relation to anonymous types with c# thanks to two things:</p> <ol> <li>Type inference </li> <li>unification of identical anonymous types</li> </ol> <p>If you are happy to rely on these two things remaining fixed (there are no guarantees on this, especially in relation to 2) then the following may be useful.</p> <pre><code>public static class Mumble { public static HashSet&lt;T&gt; HashSet&lt;T&gt;(T prototype) { return new HashSet&lt;T&gt;(); } public static List&lt;T&gt; List&lt;T&gt;(T prototype) { return new List&lt;T&gt;(); } } </code></pre> <p>You can use it like so:</p> <pre><code>var set = MumbleSet(new { Foo="", Bar="", Baz=0 }); var list = MumbleList(new { Foo="", Bar="", Baz=0 }); set.Add(new { Foo="x", Bar="y", Baz=1 }); set.Add(new { Foo="a", Bar="b", Baz=1 }); list.Add(new { Foo="a", Bar="b", Baz=1 }); var intersection = list.Intersect(set); var concat = list.Concat(set); </code></pre> <p>This works well in cases where you have anonymous types you wish to populate into some other collection for use elsewhere within a method. A common use would be reading from a database query into a set for latter checking for existence within a loop where expressing this as a series of linq queries was either too cumbersome or too expensive.</p> <p>For your motivating example you would have to add the following:</p> <pre><code>class TimeSerie&lt;TValue&gt; { // or some other constructor equivalent public TimeSerie(TValue value) { /* assign the value */ } } static class TimeSerieMumble { public static TimeSerie&lt;TValue&gt; New&lt;TValue&gt;(TValue value) { return new TimeSerie&lt;TValue&gt;(value); } } </code></pre> <p>Then you could use the code like so:</p> <pre><code>var tsList = Mumble.List(TimeSerieMumble.New(new { Name="", Value=0 })); foreach (var x in from c select new { c.Name, c.Value }) { tsList.Add(TimeSerieMumble.New(new { x.Name, x.Value })); } </code></pre> <p>Mumbling which 'leaks' into the public api is not feasible in c# 3.5 unless the type is to be mumbled through a series of type inferred generic methods in the same way as the above example. I have never seen a case where such a thing was useful given the resulting contortions required to the calling code. I would not think it would improve readability either. As a rule of thumb using more than the two levels of mumbling in the Name/Value example is likely to lead to serious complications down the line.</p> http://stackoverflow.com/questions/1299064/how-to-set-all-row-heights-of-the-wpf-datagrid-when-one-row-height-is-adjusted/1816562#1816562 0 Answer by ShuggyCoUk for how to set all row heights of the wpf datagrid when one row height is adjusted ShuggyCoUk 2009-11-29T19:53:10Z 2009-11-29T20:31:22Z <p>I arrived on this by trial and error, so long ass you are using an ItemsSource data source it should work fine. It should work with virtual rows and causes only a brief visual pause and it switches over (this seems mainly down to column autogeneration so can be avoided). </p> <p>As hacks go it has the advantage of simplicity and the use of mechanics which are not expected to change. </p> <p>The heuristic on user triggering of the action might be improved but it has not failed on me yet.</p> <pre><code>using Microsoft.Windows.Controls; using Microsoft.Windows.Controls.Primitives; public static class DataGridExtensions { public static void LinkRowHeightsToUserChange(this DataGrid dataGrid) { double? heightToApply = null; bool userTriggered = false; if (dataGrid.RowHeaderStyle == null) dataGrid.RowHeaderStyle = new Style(typeof(DataGridRowHeader)); if (dataGrid.RowStyle == null) dataGrid.RowStyle = new Style(typeof(DataGridRow)); dataGrid.RowStyle.Setters.Add(new EventSetter() { Event = DataGridRow.SizeChangedEvent, Handler = new SizeChangedEventHandler((r, sizeArgs) =&gt; { if (userTriggered &amp;&amp; sizeArgs.HeightChanged) heightToApply = sizeArgs.NewSize.Height; }) }); dataGrid.RowHeaderStyle.Setters.Add(new EventSetter() { Event = DataGridRowHeader.PreviewMouseDownEvent, Handler = new MouseButtonEventHandler( (rh,e) =&gt; userTriggered = true) }); dataGrid.RowHeaderStyle.Setters.Add(new EventSetter() { Event = DataGridRowHeader.MouseLeaveEvent, Handler = new MouseEventHandler((o, mouseArgs) =&gt; { if (heightToApply.HasValue) { userTriggered = false; var itemsSource = dataGrid.ItemsSource; dataGrid.ItemsSource = null; dataGrid.RowHeight = heightToApply.Value; dataGrid.ItemsSource = itemsSource; heightToApply = null; } }) }); } </code></pre> http://stackoverflow.com/questions/1800608/design-pattern-for-adding-attributes-to-a-base-class/1800712#1800712 0 Answer by ShuggyCoUk for Design pattern for adding attributes to a base class ShuggyCoUk 2009-11-25T23:40:10Z 2009-11-25T23:40:10Z <p>In .Net (and other strongly typed, static languages) once an <em>instance</em> of a class in instantiated you cannot change that instance to be a different type.</p> <p>The only way to 'change types' is to assign a different instance of a compatible type to the <em>variable</em> (if the variable will accept types implementing Foo and types Foo1 and Foo2 both implement/extend Foo then an instance of either can be assigned to the variable</p> <p>If you wish to maintain some <em>state</em> in this transition you can either define a common way for one instance of an object to copy all relevant values from another compatible instance (perhaps through reflection if the fields/properties are of the same type and name) or make it easy to share the sub sections via delegation, this is however a dangerous practice id the subsection types are not immutable unless your design is structured to never care.</p> <p>Your question sounds suspiciously like you would <em>like</em> to have the following:</p> <pre><code>class FooWithAdOns { int Blah { get; set;} int Wibble { get; set } Type AddOn { get; set; } /* if AddOn type is AddOnX */ int X { get; set; } /* if AddOn type is AddOnY */ int Y { get; set; } } class AddOnX { int X { get; set;} } class AddOnY { int Y { get; set;} } </code></pre> <p>Were the existence of X/Y on FooWithAddOn was dynamic.</p> <p>There are two ways to achieve this, one possible now, but limited to UI interactions based on reflection using things like <a href="http://msdn.microsoft.com/en-us/library/ms404298.aspx" rel="nofollow">ITypedList</a>. The other is much more powerful but is based on the c# 4.0 feature of dynamic dispatch, where the names of methods/properties are worked out at runtime.</p> <p>If you are just interaction with the UI via something like a PropertyGrid then the first approach will work so long as, every time you 'list' of properties changes you rebuild the property grid, the latter will work in code perfectly but, for UI code, you will need to write a wrapper capable of doing much of what the ITypedList does to expose the current 'fake properties' to the reflective UI.</p> http://stackoverflow.com/questions/1800576/are-partial-methods-considered-harmful/1800601#1800601 9 Answer by ShuggyCoUk for Are partial methods considered harmful? ShuggyCoUk 2009-11-25T23:14:02Z 2009-11-25T23:21:45Z <p>Partial methods are primarily useful for extension of the behaviour of tool generated code without cost in either runtime evaluation or user visible code where such extensibility is not used.</p> <p>As such their use is sensible and to be encouraged where it is necessary, but such occasions will be relatively uncommon for most users (who are not writing tools to generate code). If you are writing such a tool then consideration should be given to where people may which to interact with the flow of your generated code, and whether such usage cannot be handled easily through event like mechanisms while achieving your intended performance and usability goals. Events are inherently multicast and such structure may be inherently against the intended design of the API. Alternatively a complex return value, or interaction with ref/out parameters might be necessary, finally the extension may be complex/fragile despite its utility and as such only the partial class implementer may be in a position to adequately handle this. All these reasons have their niche, if not being common and partial methods can effectively solve them.</p> <p><em>Consumers</em> implementing partial methods should use them as the tool generated code dictates (if an extension point is supplied and you need it, use it). To avoid doing this because one feels that the feature is confusing would be poor use of the language and API since this is clearly the intended extension point.</p> http://stackoverflow.com/questions/1786325/which-hash-to-use-for-file-uniqueness-in-java/1786428#1786428 11 Answer by ShuggyCoUk for Which hash to use for file uniqueness in Java ShuggyCoUk 2009-11-23T22:13:46Z 2009-11-24T10:32:54Z <p>Note that a hash of this sort will <em>never</em> be unique though, with the use off an effective one you stand a very good chance of never having a collision.</p> <p>If you are not concerned with security (i.e. someone deliberately trying to break your hashing) then simply using the MD5 hash will give you an excellent hash with minimal effort.</p> <p>It is likely that you could do an SHA hash of 100Kb in well less than 10 second though and, though SHA-1 is still theoretically flawed it is of higher strength than MD5.</p> <p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/security/MessageDigest.html" rel="nofollow">MessageDigest</a> will get you an implementation of either.</p> <p>Here are some <a href="http://www.java2s.com/Tutorial/Java/0490%5F%5FSecurity/DigestStream.htm" rel="nofollow">examples of using it with streams</a>.</p> <p>Also I should note that <a href="http://stackoverflow.com/questions/1741545/java-calculate-sha-256-hash-of-large-file-efficiently">this excellent answer from jarnbjo </a> would indicate that even the supplied SHA hashing in Java are well capable of exceeding 20MB/s even on relatively modest x86 hardware. This would imply <strong>5-10 millisecond</strong> level performance on 100KB of (in memory) input data so your target of under 10seconds is a massive overestimate of the effort involved. It is likely you will be entirely limited by the rate you can read the files from disk rather than any hashing algorithm you use.</p> <p>If you have a need for <strong>strong</strong> crypto hashing you should indicate this in the question. Even then SHA of some flavour above 1 is still likely to be your best bet unless you wish to use an external library like <a href="http://www.bouncycastle.org/docs/docs1.6/index.html" rel="nofollow">Bouncy Castle</a> since you should never try to roll your own crypto if a well established implementation exists.</p> <p>For some reasonably efficient sample code I suggest <a href="http://www.rgagnon.com/javadetails/java-0416.html" rel="nofollow">this how to</a> The salient points of which can be distilled into the following (tune the buffer size as you see fit):</p> <pre><code>import java.io.*; import java.security.MessageDigest; public class Checksum { const string Algorithm = "SHA-1"; // or MD5 etc. public static byte[] createChecksum(String filename) throws Exception { InputStream fis = new FileInputStream(filename); try { byte[] buffer = new byte[1024]; MessageDigest complete = MessageDigest.getInstance("MD5"); int numRead; do { numRead = fis.read(buffer); if (numRead &gt; 0) { complete.update(buffer, 0, numRead); } } while (numRead != -1); return complete.digest(); } finally { fis.close(); } } } </code></pre> http://stackoverflow.com/questions/1178173/regex-implementation-that-can-handle-machine-generated-regexs-non-backtracking/1789034#1789034 2 Answer by ShuggyCoUk for Regex implementation that can handle machine-generated regex's: *non-backtracking*, O(n)? ShuggyCoUk 2009-11-24T09:50:35Z 2009-11-24T09:50:35Z <p>If you can handle using unsafe code (and the licensing issue) you could take the implementation from <a href="http://gnuwin32.sourceforge.net/packages/tre.htm" rel="nofollow">this TRE windows port</a>.</p> <p>You might be able to use this directly with P/Invoke and explicit layout structs for the following:</p> <pre><code>typedef int regoff_t; typedef struct { size_t re_nsub; /* Number of parenthesized subexpressions. */ void *value; /* For internal use only. */ } regex_t; typedef struct { regoff_t rm_so; regoff_t rm_eo; } regmatch_t; typedef enum { REG_OK = 0, /* No error. */ /* POSIX regcomp() return error codes. (In the order listed in the standard.) */ REG_NOMATCH, /* No match. */ REG_BADPAT, /* Invalid regexp. */ REG_ECOLLATE, /* Unknown collating element. */ REG_ECTYPE, /* Unknown character class name. */ REG_EESCAPE, /* Trailing backslash. */ REG_ESUBREG, /* Invalid back reference. */ REG_EBRACK, /* "[]" imbalance */ REG_EPAREN, /* "\(\)" or "()" imbalance */ REG_EBRACE, /* "\{\}" or "{}" imbalance */ REG_BADBR, /* Invalid content of {} */ REG_ERANGE, /* Invalid use of range operator */ REG_ESPACE, /* Out of memory. */ REG_BADRPT /* Invalid use of repetition operators. */ } reg_errcode_t; </code></pre> <p>Then use the exports capable of handling strings with embedded nulls (with wide character support)</p> <pre><code>/* Versions with a maximum length argument and therefore the capability to handle null characters in the middle of the strings (not in POSIX.2). */ int regwncomp(regex_t *preg, const wchar_t *regex, size_t len, int cflags); int regwnexec(const regex_t *preg, const wchar_t *string, size_t len, size_t nmatch, regmatch_t pmatch[], int eflags); </code></pre> <p>Alternatively wrap it via a C++/CLI solution for easier translation and more flexibility (I would certainly suggest this is sensible if you are comfortable with C++/CLI).</p> http://stackoverflow.com/questions/1786890/c-why-cant-a-uint32-be-unboxed-as-uint64/1786931#1786931 3 Answer by ShuggyCoUk for C# why can't a UInt32 be unboxed as UInt64? ShuggyCoUk 2009-11-23T23:58:52Z 2009-11-24T00:56:31Z <p>The unbox operations support only the unbox, not any coercion that you might expect.</p> <p>Whilst this can be frustrating it is worth noting that fixing this would</p> <ol> <li>make unboxing <strong>considerably</strong> more expensive</li> <li>possibly complicate the language due to nasty edge cases on method overload selection</li> </ol> <p>Amongst others, for some in depth explanation, Eric Lippert is, as ever, <a href="http://blogs.msdn.com/ericlippert/archive/2009/03/19/representation-and-identity.aspx" rel="nofollow">most instructive</a></p> <p>If you care about performance the only effective way to do this is (as Jimmy points out)</p> <pre><code>case TypeCode.Int32: RunSignedVersion((int) o); break; case TypeCode.Int64: long n = (long) o; RunSignedVersion(n); break; </code></pre> <p>This seems not too onerous.</p> <p>If this is too painful then you may make use of Convert.ToInt64 or Convert.ToUInt64() with the associated cost.</p> <pre><code>void foo(object o) { switch (Type.GetTypeCode(o.GetType())) { case TypeCode.UInt32: case TypeCode.UInt64: ulong l = Convert.ToUInt64(o); RunUnsignedIntVersion(l); break; case TypeCode.Int32: case TypeCode.Int64: long n = Convert.ToInt64(o); RunSignedVersion(n); break; } } </code></pre> <p>If Convert is not available here is the rotor source for the relevant methods:</p> <pre><code> [CLSCompliant(false)] public static ulong ToUInt64(object value) { return value == null? 0: ((IConvertible)value).ToUInt64(null); } [CLSCompliant(false)] public static long ToInt64(object value) { return value == null? 0: ((IConvertible)value).ToInt64(null); } </code></pre> <p>IConvertible is supported as an interface in the compact framework, I would assume this would therefore work but have not tried it.</p> <p>If you want the MicroFramework then I suggest simply implementing the conversion options on a per type basis is the best you can do. The API is <a href="http://msdn.microsoft.com/en-us/library/cc318059.aspx" rel="nofollow">so sparse</a> that there really isn't much else possible. I would also suggest that anything based on boxing is risky since this is a significant allocation overhead in a very memory constrained environment.</p> <p>If you are trying to implement a string.Format() alike have you considered <a href="http://msdn.microsoft.com/en-us/library/cc315179.aspx" rel="nofollow">System.Ext.Text.StringBuilder.AppendFormat</a> followed by a ToString?</p> http://stackoverflow.com/questions/1786770/linq-get-distinct-values-and-fill-list/1787054#1787054 0 Answer by ShuggyCoUk for LINQ Get Distinct values and fill LIST ShuggyCoUk 2009-11-24T00:27:05Z 2009-11-24T00:27:05Z <p>Any reason not to simply do the projection after the distinct, you might need an AsEnumerable() after the Distinct but that's not a big deal.</p> <pre><code>public static List&lt;StudentData&gt; LinqDistinct(DataTable dt) { DataTable linqTable = dt; return (from names in dt.AsEnumerable() select new { FirstName = names.Field&lt;string&gt;("FirstName"), LastName = names.Field&lt;string&gt;("LastName") }).Distinct().Select(x =&gt; new StudentData() { FirstName=x.FirstName, LastName=x.LastName}) .ToList(); } </code></pre> http://stackoverflow.com/questions/1786985/get-active-references-to-an-object/1787015#1787015 2 Answer by ShuggyCoUk for Get active references to an object ShuggyCoUk 2009-11-24T00:17:34Z 2009-11-24T00:17:34Z <p>The unmanaged dll SOS (Son Of Strike) provides a means to achieve this, though I do not believe it has significant scripting support, nor does it provide a simple means to achieve this via a single command. You would have to introspect the variable's address, check all gcroots for the variable (which would include the stack obviously) and deal with the remainder.</p> <p>I would suggest that, if you wish to prove that an object is <strong>not</strong> referenced, a simpler technique would be to (temporarily) make it finalizeable, ensure it is no longer referenced on the stack of your unit test and then force several garbage collections via <a href="http://msdn.microsoft.com/en-us/library/system.gc.collect.aspx" rel="nofollow">GC.Collect()</a> then use <a href="http://msdn.microsoft.com/en-us/library/system.gc.waitforpendingfinalizers.aspx" rel="nofollow">GC.WaitForPendingFinalizers()</a>. </p> <p>Your finalize method can set a static boolean flag and then your unit test can assert this is true.</p> <p>I would question the <em>utility</em> of this without further explanation but this is likely to be the simplest method of proving no dangling references exist in a unit test.</p> http://stackoverflow.com/questions/1786750/how-to-know-in-c-code-which-type-a-variable-was-declared-with/1786772#1786772 3 Answer by ShuggyCoUk for How to know in C# code which type a variable was declared with ShuggyCoUk 2009-11-23T23:23:21Z 2009-11-23T23:39:09Z <p>This is not possible without parsing the code in question.</p> <p>At runtime only two pieces of type information are available, the <em>actual</em> type of a value (via object.GetType()) and, if the variable in question is a parameter or class/instance variable the <a href="http://msdn.microsoft.com/en-us/library/system.reflection.fieldinfo.fieldtype.aspx" rel="nofollow">FieldType</a> property on a FieldInfo, <a href="http://msdn.microsoft.com/en-us/library/system.reflection.propertyinfo.propertytype.aspx" rel="nofollow">PropertyType</a> on a PropertyInfo or <a href="http://msdn.microsoft.com/en-us/library/system.reflection.parameterinfo.parametertype.aspx" rel="nofollow">ParameterType</a> on a ParameterInfo.</p> <p>Since the value passed to you may well have come via several variables on its route to you the question is not even well defined I'm afraid.</p> <p>Ah - I see you want only the type as currently defined in the method, the Expression functionality will provide this (Roman's answer shows a neat way to do this) but beware trying to use this outside the method... In essence you are letting the generic type inference of the compiler infer the type in question but this means that the variable used is <em>not</em> always the variable you can see. It may instead be that of a compiler synthesised variable, for example:</p> <pre><code>string x = "x"; Console.WriteLine(x.GetDeclaredType()); // string Console.WriteLine(((object)x).GetDeclaredType()); // object </code></pre> <p>Since the compiler synthesises a temporary variable in which to place an object reference to x.</p> http://stackoverflow.com/questions/1543965/document-databases-key-value-stores-for-use-with-net-projects/1786655#1786655 2 Answer by ShuggyCoUk for Document databases/Key-value stores for use with .Net projects ShuggyCoUk 2009-11-23T22:58:11Z 2009-11-23T22:58:11Z <p>CouchDB is well regarded and <a href="http://stackoverflow.com/questions/1050152/use-couchdb-with-net">accessible via .Net</a> albeit not that pleasant to install on windows still.</p> <p>Thrift api compatible servers like <a href="http://wiki.apache.org/cassandra/" rel="nofollow">cassandra</a> will talk <a href="http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/csharp/" rel="nofollow">.Net</a></p> <p><a href="http://1978th.net/tokyocabinet/" rel="nofollow">Tokyo Cabinet</a> can be simply accessed by the (apparently) full <a href="http://tokyotyrant.codeplex.com/" rel="nofollow">.Net port of Tokyo Tyrant</a></p> <p><a href="http://www.mongodb.org" rel="nofollow">MongoDB</a> has <a href="http://www.mongodb.org/display/DOCS/Drivers" rel="nofollow">several .Net api options</a></p> <p>I would suggest that indicating whether sharding (or other horizontal scaling capabilities) are more or less important that some level of consistency in your persistent store since all of the above trade off the consistency for low latency and good scalability in some way or another.</p> http://stackoverflow.com/questions/1784880/how-do-i-natively-translate-sqltype-to-underlying-sql-type-declaration/1785051#1785051 0 Answer by ShuggyCoUk for How do I natively translate SqlType to underlying SQL type declaration? ShuggyCoUk 2009-11-23T18:27:34Z 2009-11-23T18:27:34Z <p>Not quite a total duplicate but there is the <a href="http://stackoverflow.com/questions/1293599/mapping-clr-parameter-data/1302912#1302912">opposite direction</a>.</p> <p>The problem of it being a Many &lt;-> Many mapping is exactly the same though.</p> <p>Any fully automatic translation would be, at best overzealous (for example mapping any string to a TEXT column), and at worst wrong in some subtle way.</p> <p>At the very least it would need to be Version dependent, for example should it use DateTime or DateTime2?</p> http://stackoverflow.com/questions/1784436/linq-to-sql-changing-sort-order-at-run-time-with-well-known-static-typing/1784936#1784936 0 Answer by ShuggyCoUk for Linq To Sql - Changing Sort Order At Run-Time with well known static typing ShuggyCoUk 2009-11-23T18:08:52Z 2009-11-23T18:08:52Z <p>I believe that this will not work unless the two possible fields have the <em>identical</em> type.</p> <p>Then the linq to sql will (if possible) correctly create the relevant sql.</p> <p>so for example if both of those fields were DateTimes:</p> <pre><code>Expression&lt;Func&lt;csExtendedQAIncident_Doc, DateTime&gt;&gt; ordering = s =&gt; s.dtUpdateDate; if (viewType == HomepageViewType.MostViewed) ordering = (s) =&gt; s.vchUserField8; // a DateTime else if (viewType == HomepageViewType.MostEffective) ordering = (s) =&gt; s.vchUserField4; // another DateTime </code></pre> <p>Then this would work just fine (I tested it and it worked)</p> <p>You could instead do a per type order by either a series of nested switch/if statements of by constructing a dictionary or similar structure to get them.</p> <p>For the linq to sql to work without explicit dynamic creation of the query I believe it must know the <em>precise</em> type of the query as opposed to just it being an IComparable...</p> http://stackoverflow.com/questions/1779679/how-can-i-make-this-repeated-code-more-elegant/1779704#1779704 13 Answer by ShuggyCoUk for How can I make this repeated code more elegant? ShuggyCoUk 2009-11-22T19:29:47Z 2009-11-23T11:46:12Z <pre><code>public interface INameable { string Name {get;set;} } public static IDictionary&lt;int, T&gt; ReadTable&lt;T&gt;(string tableName) where T : INameable, new() { DataTable dt = GetDataTable(tableName); var dictionary = new Dictionary&lt;int, T&gt;(); for (int i = 0; i &lt; dt.Rows.Count; i++) { DataRow dr = dt.Rows[i]; int id = Convert.ToInt32(dr["id"]); string name = dr["name"].ToString(); dictionary[id] = new T() { Name = name }; } return dictionary; } </code></pre> <p>If you have c# 4.0 dynamic you can avoid the INameable for some (minor) loss of typesafety</p> <p>An alternate, similar in vein to Hakon's answer but without exposing the dictionary is </p> <pre><code>public IDictionary&lt;int,T&gt; ReadTable&lt;T&gt;( string tableName, Action&lt;T, string&gt; onName) where T : new() { var dictionary = new Dictionary&lt;int,T&gt;(); DataTable table = GetDataTable(tableName); foreach (DataRow row in table.Rows) { int id = Convert.ToInt32(row["id"]); string name = row["name"].ToString(); var t = new T(); onName(t, name); dictionary[id] = t; } return dictionary; } </code></pre> <p>which is then consumed like so:</p> <pre><code>var ci = ReadTable&lt;ContinuousIntegrationSolution&gt;("CI", (t, name) =&gt; t.Name = name); var bt = ReadTable&lt;BugTracker &gt;("Bug_Tracking", (t, name) =&gt; t.Name = name); var sdlc = ReadTable&lt;SDLCProcess&gt;("SDLC", (t, name) =&gt; t.Name = name); </code></pre> <p>An alternate, more flexible approach, but still reasonably simple to use at the call site due to type inference would be:</p> <pre><code>public IDictionary&lt;int,T&gt; ReadTable&lt;T&gt;(string tableName, Func&lt;string,T&gt; create) { DataTable table = GetDataTable(tableName); var dictionary = new Dictionary&lt;int,T&gt;() foreach (DataRow row in table.Rows) { int id = Convert.ToInt32(row["id"]); string name = row["name"].ToString(); dictionary[id] = create(name); } return dictionary; } </code></pre> <p>which is then consumed like so:</p> <pre><code>var ci = ReadTable("CI", name =&gt; new ContinuousIntegrationSolution() {Name = name}); var bt = ReadTable("Bug_Tracking", name =&gt; new BugTracker() {Name = name}); var sdlc = ReadTable("SDLC", name =&gt; new SDLCProcess() {Name = name}); </code></pre> <p>If you were to go with the lambda approach I would suggest the latter.</p> http://stackoverflow.com/questions/1779694/what-is-the-shortest-source-code-you-have-seen-to-do-a-complex-task/1779714#1779714 5 Answer by ShuggyCoUk for What is the shortest source code you have seen to do a complex task? ShuggyCoUk 2009-11-22T19:34:18Z 2009-11-22T19:34:18Z <p>In the raytracer vein <a href="http://blogs.msdn.com/lukeh/archive/2007/10/01/taking-linq-to-objects-to-extremes-a-fully-linqified-raytracer.aspx" rel="nofollow">Luke Hoban did a neat implementation in Linq</a>:</p> <pre><code>var pixelsQuery = from y in Enumerable.Range(0, screenHeight) let recenterY = -(y - (screenHeight / 2.0)) / (2.0 * screenHeight) select from x in Enumerable.Range(0, screenWidth) let recenterX = (x - (screenWidth / 2.0)) / (2.0 * screenWidth) let point = Vector.Norm(Vector.Plus(scene.Camera.Forward, Vector.Plus(Vector.Times(recenterX, scene.Camera.Right), Vector.Times(recenterY, scene.Camera.Up)))) let ray = new Ray { Start = scene.Camera.Pos, Dir = point } let computeTraceRay = (Func&lt;Func&lt;TraceRayArgs, Color&gt;, Func&lt;TraceRayArgs, Color&gt;&gt;) (f =&gt; traceRayArgs =&gt; (from isect in from thing in traceRayArgs.Scene.Things select thing.Intersect(traceRayArgs.Ray) where isect != null orderby isect.Dist let d = isect.Ray.Dir let pos = Vector.Plus(Vector.Times(isect.Dist, isect.Ray.Dir), isect.Ray.Start) let normal = isect.Thing.Normal(pos) let reflectDir = Vector.Minus(d, Vector.Times(2 * Vector.Dot(normal, d), normal)) let naturalColors = from light in traceRayArgs.Scene.Lights let ldis = Vector.Minus(light.Pos, pos) let livec = Vector.Norm(ldis) let testRay = new Ray { Start = pos, Dir = livec } let testIsects = from inter in from thing in traceRayArgs.Scene.Things select thing.Intersect(testRay) where inter != null orderby inter.Dist select inter let testIsect = testIsects.FirstOrDefault() let neatIsect = testIsect == null ? 0 : testIsect.Dist let isInShadow = !((neatIsect &gt; Vector.Mag(ldis)) || (neatIsect == 0)) where !isInShadow let illum = Vector.Dot(livec, normal) let lcolor = illum &gt; 0 ? Color.Times(illum, light.Color) : Color.Make(0, 0, 0) let specular = Vector.Dot(livec, Vector.Norm(reflectDir)) let scolor = specular &gt; 0 ? Color.Times(Math.Pow(specular, isect.Thing.Surface.Roughness), light.Color) : Color.Make(0, 0, 0) select Color.Plus(Color.Times(isect.Thing.Surface.Diffuse(pos), lcolor), Color.Times(isect.Thing.Surface.Specular(pos), scolor)) let reflectPos = Vector.Plus(pos, Vector.Times(.001, reflectDir)) let reflectColor = traceRayArgs.Depth &gt;= MaxDepth ? Color.Make(.5, .5, .5) : Color.Times(isect.Thing.Surface.Reflect(reflectPos), f(new TraceRayArgs(new Ray { Start = reflectPos, Dir = reflectDir }, traceRayArgs.Scene, traceRayArgs.Depth + 1))) select naturalColors.Aggregate(reflectColor, (color, natColor) =&gt; Color.Plus(color, natColor))) .DefaultIfEmpty(Color.Background).First()) let traceRay = Y(computeTraceRay) select new { X = x, Y = y, Color = traceRay(new TraceRayArgs(ray, scene, 0)) }; foreach (var row in pixelsQuery) foreach (var pixel in row) setPixel(pixel.X, pixel.Y, pixel.Color.ToDrawingColor()); </code></pre> http://stackoverflow.com/questions/556835/displaying-a-downward-triangle-in-vb-net-u25bc/556877#556877 9 Answer by ShuggyCoUk for Displaying a Downward Triangle in VB.NET ▼ (U+25BC) ShuggyCoUk 2009-02-17T13:51:48Z 2009-11-18T14:11:01Z <p>There can often be issues (both with source control systes and diff tools) if you embed more complex unicode characters in source files.</p> <p>It is often better to do it via an explicit escape sequence and keep the source file in a simpler encoding.</p> <pre><code>btnCalendarToggle.Text = "\u25BC"; </code></pre> <p>If this works it is likely that the problem is instead the encoding settings for the source file.</p> <p>Are you certain however that the font in question is Arial (try debugging and checking) since regardless of the above mentioned issues so long as the encoding is set to a legitimate Unicode one (and Visual Studio will convert the file for you if you embed such a character in it) this should have worked.</p> http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1657280#1657280 3 Answer by ShuggyCoUk for What is the best Battleship AI? ShuggyCoUk 2009-11-01T14:21:13Z 2009-11-16T10:42:45Z <p>CrossFire updated. I know it can't compete with Farnsworth or Dreadnought but it is a lot faster than the latter and simple to play with in case anyone wants to try. This relies on the current state of my libraries,included here to make it easy to use.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.IO; using System.Collections.ObjectModel; namespace Battleship.ShuggyCoUk { public class Simple : IBattleshipOpponent { BoardView&lt;OpponentsBoardState&gt; opponentsBoard = new BoardView&lt;OpponentsBoardState&gt;(new Size(10,10)); Rand rand = new Rand(); int gridOddEven; Size size; public string Name { get { return "Simple"; } } public Version Version { get { return new Version(2, 1); }} public void NewMatch(string opponent) {} public void NewGame(System.Drawing.Size size, TimeSpan timeSpan) { this.size = size; this.opponentsBoard = new BoardView&lt;OpponentsBoardState&gt;(size); this.gridOddEven = rand.Pick(new[] { 0, 1 }); } public void PlaceShips(System.Collections.ObjectModel.ReadOnlyCollection&lt;Ship&gt; ships) { BoardView&lt;bool&gt; board = new BoardView&lt;bool&gt;(size); var AllOrientations = new[] { ShipOrientation.Horizontal, ShipOrientation.Vertical }; foreach (var ship in ships) { int avoidTouching = 3; while (!ship.IsPlaced) { var l = rand.Pick(board.Select(c =&gt; c.Location)); var o = rand.Pick(AllOrientations); if (ship.IsLegal(ships, size, l, o)) { if (ship.IsTouching(ships, l, o)&amp;&amp; --avoidTouching &gt; 0) continue; ship.Place(l, o); } } } } protected virtual Point PickWhenNoTargets() { return rand.PickBias(x =&gt; x.Bias, opponentsBoard // nothing 1 in size .Where(c =&gt; (c.Location.X + c.Location.Y) % 2 == gridOddEven) .Where(c =&gt; c.Data == OpponentsBoardState.Unknown)) .Location; } private int SumLine(Cell&lt;OpponentsBoardState&gt; c, int acc) { if (acc &gt;= 0) return acc; if (c.Data == OpponentsBoardState.Hit) return acc - 1; return -acc; } public System.Drawing.Point GetShot() { var targets = opponentsBoard .Where(c =&gt; c.Data == OpponentsBoardState.Hit) .SelectMany(c =&gt; c.Neighbours()) .Where(c =&gt; c.Data == OpponentsBoardState.Unknown) .ToList(); if (targets.Count &gt; 1) { var lines = targets.Where( x =&gt; x.FoldAll(-1, SumLine).Select(r =&gt; Math.Abs(r) - 1).Max() &gt; 1).ToList(); if (lines.Count &gt; 0) targets = lines; } var target = targets.RandomOrDefault(rand); if (target == null) return PickWhenNoTargets(); return target.Location; } public void OpponentShot(System.Drawing.Point shot) { } public void ShotHit(Point shot, bool sunk) { opponentsBoard[shot] = OpponentsBoardState.Hit; Debug(shot, sunk); } public void ShotMiss(Point shot) { opponentsBoard[shot] = OpponentsBoardState.Miss; Debug(shot, false); } public const bool DebugEnabled = false; public void Debug(Point shot, bool sunk) { if (!DebugEnabled) return; opponentsBoard.WriteAsGrid( Console.Out, x =&gt; { string t; switch (x.Data) { case OpponentsBoardState.Unknown: return " "; case OpponentsBoardState.Miss: t = "m"; break; case OpponentsBoardState.MustBeEmpty: t = "/"; break; case OpponentsBoardState.Hit: t = "x"; break; default: t = "?"; break; } if (x.Location == shot) t = t.ToUpper(); return t; }); if (sunk) Console.WriteLine("sunk!"); Console.ReadLine(); } public void GameWon() { } public void GameLost() { } public void MatchOver() { } #region Library code enum OpponentsBoardState { Unknown = 0, Miss, MustBeEmpty, Hit, } public enum Compass { North, East, South, West } class Cell&lt;T&gt; { private readonly BoardView&lt;T&gt; view; public readonly int X; public readonly int Y; public T Data; public double Bias { get; set; } public Cell(BoardView&lt;T&gt; view, int x, int y) { this.view = view; this.X = x; this.Y = y; this.Bias = 1.0; } public Point Location { get { return new Point(X, Y); } } public IEnumerable&lt;U&gt; FoldAll&lt;U&gt;(U acc, Func&lt;Cell&lt;T&gt;, U, U&gt; trip) { return new[] { Compass.North, Compass.East, Compass.South, Compass.West } .Select(x =&gt; FoldLine(x, acc, trip)); } public U FoldLine&lt;U&gt;(Compass direction, U acc, Func&lt;Cell&lt;T&gt;, U, U&gt; trip) { var cell = this; while (true) { switch (direction) { case Compass.North: cell = cell.North; break; case Compass.East: cell = cell.East; break; case Compass.South: cell = cell.South; break; case Compass.West: cell = cell.West; break; } if (cell == null) return acc; acc = trip(cell, acc); } } public Cell&lt;T&gt; North { get { return view.SafeLookup(X, Y - 1); } } public Cell&lt;T&gt; South { get { return view.SafeLookup(X, Y + 1); } } public Cell&lt;T&gt; East { get { return view.SafeLookup(X + 1, Y); } } public Cell&lt;T&gt; West { get { return view.SafeLookup(X - 1, Y); } } public IEnumerable&lt;Cell&lt;T&gt;&gt; Neighbours() { if (North != null) yield return North; if (South != null) yield return South; if (East != null) yield return East; if (West != null) yield return West; } } class BoardView&lt;T&gt; : IEnumerable&lt;Cell&lt;T&gt;&gt; { public readonly Size Size; private readonly int Columns; private readonly int Rows; private Cell&lt;T&gt;[] history; public BoardView(Size size) { this.Size = size; Columns = size.Width; Rows = size.Height; this.history = new Cell&lt;T&gt;[Columns * Rows]; for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Rows; x++) history[x + y * Columns] = new Cell&lt;T&gt;(this, x, y); } } public T this[int x, int y] { get { return history[x + y * Columns].Data; } set { history[x + y * Columns].Data = value; } } public T this[Point p] { get { return history[SafeCalc(p.X, p.Y, true)].Data; } set { this.history[SafeCalc(p.X, p.Y, true)].Data = value; } } private int SafeCalc(int x, int y, bool throwIfIllegal) { if (x &lt; 0 || y &lt; 0 || x &gt;= Columns || y &gt;= Rows) { if (throwIfIllegal) throw new ArgumentOutOfRangeException("[" + x + "," + y + "]"); else return -1; } return x + y * Columns; } public void Set(T data) { foreach (var cell in this.history) cell.Data = data; } public Cell&lt;T&gt; SafeLookup(int x, int y) { int index = SafeCalc(x, y, false); if (index &lt; 0) return null; return history[index]; } #region IEnumerable&lt;Cell&lt;T&gt;&gt; Members public IEnumerator&lt;Cell&lt;T&gt;&gt; GetEnumerator() { foreach (var cell in this.history) yield return cell; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } public BoardView&lt;U&gt; Transform&lt;U&gt;(Func&lt;T, U&gt; transform) { var result = new BoardView&lt;U&gt;(new Size(Columns, Rows)); for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Columns; x++) { result[x, y] = transform(this[x, y]); } } return result; } public void WriteAsGrid(TextWriter w) { WriteAsGrid(w, "{0}"); } public void WriteAsGrid(TextWriter w, string format) { WriteAsGrid(w, x =&gt; string.Format(format, x.Data)); } public void WriteAsGrid(TextWriter w, Func&lt;Cell&lt;T&gt;, string&gt; perCell) { for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Columns; x++) { if (x != 0) w.Write(","); w.Write(perCell(this.SafeLookup(x, y))); } w.WriteLine(); } } #endregion } public class Rand { Random r; public Rand() { var rand = System.Security.Cryptography.RandomNumberGenerator.Create(); byte[] b = new byte[4]; rand.GetBytes(b); r = new Random(BitConverter.ToInt32(b, 0)); } public int Next(int maxValue) { return r.Next(maxValue); } public double NextDouble(double maxValue) { return r.NextDouble() * maxValue; } public T Pick&lt;T&gt;(IEnumerable&lt;T&gt; things) { return things.ElementAt(Next(things.Count())); } public T PickBias&lt;T&gt;(Func&lt;T, double&gt; bias, IEnumerable&lt;T&gt; things) { double d = NextDouble(things.Sum(x =&gt; bias(x))); foreach (var x in things) { if (d &lt; bias(x)) return x; d -= bias(x); } throw new InvalidOperationException("fell off the end!"); } } #endregion } public static class Extensions { public static bool IsIn(this Point p, Size size) { return p.X &gt;= 0 &amp;&amp; p.Y &gt;= 0 &amp;&amp; p.X &lt; size.Width &amp;&amp; p.Y &lt; size.Height; } public static bool IsLegal(this Ship ship, IEnumerable&lt;Ship&gt; ships, Size board, Point location, ShipOrientation direction) { var temp = new Ship(ship.Length); temp.Place(location, direction); if (!temp.GetAllLocations().All(p =&gt; p.IsIn(board))) return false; return ships.Where(s =&gt; s.IsPlaced).All(s =&gt; !s.ConflictsWith(temp)); } public static bool IsTouching(this Point a, Point b) { return (a.X == b.X - 1 || a.X == b.X + 1) &amp;&amp; (a.Y == b.Y - 1 || a.Y == b.Y + 1); } public static bool IsTouching(this Ship ship, IEnumerable&lt;Ship&gt; ships, Point location, ShipOrientation direction) { var temp = new Ship(ship.Length); temp.Place(location, direction); var occupied = new HashSet&lt;Point&gt;(ships .Where(s =&gt; s.IsPlaced) .SelectMany(s =&gt; s.GetAllLocations())); if (temp.GetAllLocations().Any(p =&gt; occupied.Any(b =&gt; b.IsTouching(p)))) return true; return false; } public static ReadOnlyCollection&lt;Ship&gt; MakeShips(params int[] lengths) { return new System.Collections.ObjectModel.ReadOnlyCollection&lt;Ship&gt;( lengths.Select(l =&gt; new Ship(l)).ToList()); } public static IEnumerable&lt;T&gt; Shuffle&lt;T&gt;(this IEnumerable&lt;T&gt; source, Battleship.ShuggyCoUk.Simple.Rand rand) { T[] elements = source.ToArray(); // Note i &gt; 0 to avoid final pointless iteration for (int i = elements.Length - 1; i &gt; 0; i--) { // Swap element "i" with a random earlier element it (or itself) int swapIndex = rand.Next(i + 1); T tmp = elements[i]; elements[i] = elements[swapIndex]; elements[swapIndex] = tmp; } // Lazily yield (avoiding aliasing issues etc) foreach (T element in elements) { yield return element; } } public static T RandomOrDefault&lt;T&gt;(this IEnumerable&lt;T&gt; things, Battleship.ShuggyCoUk.Simple.Rand rand) { int count = things.Count(); if (count == 0) return default(T); return things.ElementAt(rand.Next(count)); } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1656252#1656252 8 Answer by ShuggyCoUk for What is the best Battleship AI? ShuggyCoUk 2009-11-01T02:45:26Z 2009-11-16T01:08:53Z <p>Not a fully fledged answer but there seems little point cluttering the real answers with code that is common. I thus present some extensions/general classes in the spirit of open source. If you use these then please change the namespace or trying to compile everything into one dll isn't going to work.</p> <p>BoardView lets you easily work with an annotated board.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.IO; namespace Battleship.ShuggyCoUk { public enum Compass { North,East,South,West } class Cell&lt;T&gt; { private readonly BoardView&lt;T&gt; view; public readonly int X; public readonly int Y; public T Data; public double Bias { get; set; } public Cell(BoardView&lt;T&gt; view, int x, int y) { this.view = view; this.X = x; this.Y = y; this.Bias = 1.0; } public Point Location { get { return new Point(X, Y); } } public IEnumerable&lt;U&gt; FoldAll&lt;U&gt;(U acc, Func&lt;Cell&lt;T&gt;, U, U&gt; trip) { return new[] { Compass.North, Compass.East, Compass.South, Compass.West } .Select(x =&gt; FoldLine(x, acc, trip)); } public U FoldLine&lt;U&gt;(Compass direction, U acc, Func&lt;Cell&lt;T&gt;, U, U&gt; trip) { var cell = this; while (true) { switch (direction) { case Compass.North: cell = cell.North; break; case Compass.East: cell = cell.East; break; case Compass.South: cell = cell.South; break; case Compass.West: cell = cell.West; break; } if (cell == null) return acc; acc = trip(cell, acc); } } public Cell&lt;T&gt; North { get { return view.SafeLookup(X, Y - 1); } } public Cell&lt;T&gt; South { get { return view.SafeLookup(X, Y + 1); } } public Cell&lt;T&gt; East { get { return view.SafeLookup(X+1, Y); } } public Cell&lt;T&gt; West { get { return view.SafeLookup(X-1, Y); } } public IEnumerable&lt;Cell&lt;T&gt;&gt; Neighbours() { if (North != null) yield return North; if (South != null) yield return South; if (East != null) yield return East; if (West != null) yield return West; } } class BoardView&lt;T&gt; : IEnumerable&lt;Cell&lt;T&gt;&gt; { public readonly Size Size; private readonly int Columns; private readonly int Rows; private Cell&lt;T&gt;[] history; public BoardView(Size size) { this.Size = size; Columns = size.Width; Rows = size.Height; this.history = new Cell&lt;T&gt;[Columns * Rows]; for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Rows; x++) history[x + y * Columns] = new Cell&lt;T&gt;(this, x, y); } } public T this[int x, int y] { get { return history[x + y * Columns].Data; } set { history[x + y * Columns].Data = value; } } public T this[Point p] { get { return history[SafeCalc(p.X, p.Y, true)].Data; } set { this.history[SafeCalc(p.X, p.Y, true)].Data = value; } } private int SafeCalc(int x, int y, bool throwIfIllegal) { if (x &lt; 0 || y &lt; 0 || x &gt;= Columns || y &gt;= Rows) { if (throwIfIllegal) throw new ArgumentOutOfRangeException("["+x+","+y+"]"); else return -1; } return x + y * Columns; } public void Set(T data) { foreach (var cell in this.history) cell.Data = data; } public Cell&lt;T&gt; SafeLookup(int x, int y) { int index = SafeCalc(x, y, false); if (index &lt; 0) return null; return history[index]; } #region IEnumerable&lt;Cell&lt;T&gt;&gt; Members public IEnumerator&lt;Cell&lt;T&gt;&gt; GetEnumerator() { foreach (var cell in this.history) yield return cell; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } public BoardView&lt;U&gt; Transform&lt;U&gt;(Func&lt;T, U&gt; transform) { var result = new BoardView&lt;U&gt;(new Size(Columns, Rows)); for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Columns; x++) { result[x,y] = transform(this[x, y]); } } return result; } public void WriteAsGrid(TextWriter w) { WriteAsGrid(w, "{0}"); } public void WriteAsGrid(TextWriter w, string format) { WriteAsGrid(w, x =&gt; string.Format(format, x.Data)); } public void WriteAsGrid(TextWriter w, Func&lt;Cell&lt;T&gt;,string&gt; perCell) { for (int y = 0; y &lt; Rows; y++) { for (int x = 0; x &lt; Columns; x++) { if (x != 0) w.Write(","); w.Write(perCell(this.SafeLookup(x, y))); } w.WriteLine(); } } #endregion } } </code></pre> <p>Some extensions, some of this duplicates functionality in the main framework but should really be done by you.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using System.Collections.ObjectModel; namespace Battleship.ShuggyCoUk { public static class Extensions { public static bool IsIn(this Point p, Size size) { return p.X &gt;= 0 &amp;&amp; p.Y &gt;= 0 &amp;&amp; p.X &lt; size.Width &amp;&amp; p.Y &lt; size.Height; } public static bool IsLegal(this Ship ship, IEnumerable&lt;Ship&gt; ships, Size board, Point location, ShipOrientation direction) { var temp = new Ship(ship.Length); temp.Place(location, direction); if (!temp.GetAllLocations().All(p =&gt; p.IsIn(board))) return false; return ships.Where(s =&gt; s.IsPlaced).All(s =&gt; !s.ConflictsWith(temp)); } public static bool IsTouching(this Point a, Point b) { return (a.X == b.X - 1 || a.X == b.X + 1) &amp;&amp; (a.Y == b.Y - 1 || a.Y == b.Y + 1); } public static bool IsTouching(this Ship ship, IEnumerable&lt;Ship&gt; ships, Point location, ShipOrientation direction) { var temp = new Ship(ship.Length); temp.Place(location, direction); var occupied = new HashSet&lt;Point&gt;(ships .Where(s =&gt; s.IsPlaced) .SelectMany(s =&gt; s.GetAllLocations())); if (temp.GetAllLocations().Any(p =&gt; occupied.Any(b =&gt; b.IsTouching(p)))) return true; return false; } public static ReadOnlyCollection&lt;Ship&gt; MakeShips(params int[] lengths) { return new System.Collections.ObjectModel.ReadOnlyCollection&lt;Ship&gt;( lengths.Select(l =&gt; new Ship(l)).ToList()); } public static IEnumerable&lt;T&gt; Shuffle&lt;T&gt;(this IEnumerable&lt;T&gt; source, Rand rand) { T[] elements = source.ToArray(); // Note i &gt; 0 to avoid final pointless iteration for (int i = elements.Length - 1; i &gt; 0; i--) { // Swap element "i" with a random earlier element it (or itself) int swapIndex = rand.Next(i + 1); T tmp = elements[i]; elements[i] = elements[swapIndex]; elements[swapIndex] = tmp; } // Lazily yield (avoiding aliasing issues etc) foreach (T element in elements) { yield return element; } } public static T RandomOrDefault&lt;T&gt;(this IEnumerable&lt;T&gt; things, Rand rand) { int count = things.Count(); if (count == 0) return default(T); return things.ElementAt(rand.Next(count)); } } } </code></pre> <p>Something I end up using a lot.</p> <pre><code>enum OpponentsBoardState { Unknown = 0, Miss, MustBeEmpty, Hit, } </code></pre> <p>Randomization. Secure but testable, useful for testing. </p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace Battleship.ShuggyCoUk { public class Rand { Random r; public Rand() { var rand = System.Security.Cryptography.RandomNumberGenerator.Create(); byte[] b = new byte[4]; rand.GetBytes(b); r = new Random(BitConverter.ToInt32(b, 0)); } public int Next(int maxValue) { return r.Next(maxValue); } public double NextDouble(double maxValue) { return r.NextDouble() * maxValue; } public T Pick&lt;T&gt;(IEnumerable&lt;T&gt; things) { return things.ElementAt(Next(things.Count())); } public T PickBias&lt;T&gt;(Func&lt;T, double&gt; bias, IEnumerable&lt;T&gt; things) { double d = NextDouble(things.Sum(x =&gt; bias(x))); foreach (var x in things) { if (d &lt; bias(x)) return x; d -= bias(x); } throw new InvalidOperationException("fell off the end!"); } } } </code></pre> http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1657199#1657199 2 Answer by ShuggyCoUk for What is the best Battleship AI? ShuggyCoUk 2009-11-01T13:47:50Z 2009-11-01T13:47:50Z <p>If you are brute forcing your analysis then you may find the mechanics of the supplied RandomOpponent highly inefficient. It allows itself to reselect already targeted locations and lets the framework force it to repeat till it hits one it hasn't touched yet or the timelimit per move expires.</p> <p>This opponent has similar behaviour (the effective placement distribution is the same) it just does the sanity checking itself and only consumes one random number generation per call (amortized)).</p> <p>This uses the classes in my extensions/library answer and I only supply the key methods/state.</p> <p>Shuffle is lifted from <a href="http://stackoverflow.com/questions/1287567/c-is-using-random-and-orderby-a-good-shuffle-algorithm">Jon Skeet's answer here</a></p> <pre><code>class WellBehavedRandomOpponent : IBattleShipOpponent { Rand rand = new Rand(); List&lt;Point&gt; guesses; int nextGuess = 0; public void PlaceShips(IEnumerable&lt;Ship&gt; ships) { BoardView&lt;bool&gt; board = new BoardView&lt;bool&gt;(BoardSize); var AllOrientations = new[] { ShipOrientation.Horizontal, ShipOrientation.Vertical }; foreach (var ship in ships) { while (!ship.IsPlaced) { var l = rand.Pick(board.Select(c =&gt; c.Location)); var o = rand.Pick(AllOrientations); if (ship.IsLegal(ships, BoardSize, l, o)) ship.Place(l, o); } } } public void NewGame(Size size, TimeSpan timeSpan) { var board = new BoardView&lt;bool&gt;(size); this.guesses = new List&lt;Point&gt;( board.Select(x =&gt; x.Location).Shuffle(rand)); nextGuess = 0; } public System.Drawing.Point GetShot() { return guesses[nextGuess++]; } // empty methods left out } </code></pre> http://stackoverflow.com/questions/600115/nullablet-confusion/600129#600129 11 Answer by ShuggyCoUk for Nullable<T> confusion ShuggyCoUk 2009-03-01T17:19:05Z 2009-10-24T23:47:15Z <p>This is because the struct constraint actually means <a href="http://msdn.microsoft.com/en-us/library/fsdhc71f%28VS.80%29.aspx" rel="nofollow">'not nullable'</a> since Nullable, despite being a struct, is nullable (can accept the value null) the <code>Nullable&lt;int&gt;</code> is not a valid type parameter to the outer Nullable.</p> <p>This is made explicit in <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">the constraints documentation</a></p> <blockquote> <p>where T: struct<br /> The type argument must be a value type. Any value type except Nullable can be specified.<br /> See Using Nullable Types (C# Programming Guide) for more information.</p> </blockquote> <p>If you want the rationale for that you would need the actual language designer's comments on it which I can't find. However I would postulate that:</p> <ol> <li>the compiler and platform changes required to achieve Nullable in it's current form are quite extensive (and were a relatively last minute addition to the 2.0 release). </li> <li>They have several potentially confusing edge cases. </li> </ol> <p>Allowing the equivalent of int?? would only confuse that since the language provides no way of distinguishing Nullable<code>&lt;Nullable&lt;null&gt;&gt;</code> and Nullable<code>&lt;null&gt;</code> nor any obvious solution to the following. </p> <pre><code>Nullable&lt;Nullable&lt;int&gt;&gt; x = null; Nullable&lt;int&gt; y = null; Console.WriteLine(x == null); // true Console.WriteLine(y == null); // true Console.WriteLine(x == y); // false or a compile time error! </code></pre> <p>Making that return true would be <strong>very</strong> complex and significant overhead on many operations involving the Nullable type.</p> <p>Some types in the CLR are 'special', examples are strings and primitives in that the compiler and runtime know a lot about the implementation used by each other. Nullable is special in this way as well. Since it is already special cased in other areas special casing the <code>where T : struct</code> aspect is not such a big deal. The benefit of this is in dealing with structs in generic classes because none of them, apart from Nullable, can be compared against null. This means the jit can safely consider <code>t == null</code> to be false always.</p> <p>Where languages are designed to allow two very different concepts to interact you tend to get weird, confusing or down right dangerous edge cases. As an example consider Nullable and the equality operators</p> <pre><code>int? x = null; int? y = null; Console.WriteLine(x == y); // true Console.WriteLine(x &gt;= y); // false! </code></pre> <p>By preventing Nullables when using struct generic constraint many nasty (and unclear) edge cases can be avoided.</p> <p>As to the exact part of the specification that mandates this <a href="http://en.csharp-online.net/ECMA-334%3A%5F25.7%5FConstraints" rel="nofollow">from section 25.7</a> (emphasis mine): </p> <blockquote> <p>The value type constraint specifies that a type argument used for the type parameter must be a value type (§25.7.1). Any non-nullable struct type, enum type, or type parameter having the value type constraint satisfies this constraint. A type parameter having the value type constraint shall not also have the constructor-constraint. The System.Nullable type specifies the non-nullable value type constraint for T. <strong>Thus, recursively constructed types of the forms T?? and Nullable<code>&lt;</code>Nullable<code>&lt;</code>T<code>&gt;&gt;</code> are prohibited.</strong></p> </blockquote> http://stackoverflow.com/questions/488250/c-compare-two-generic-values/488301#488301 15 Answer by ShuggyCoUk for c# compare two generic values ShuggyCoUk 2009-01-28T16:26:47Z 2009-10-24T23:19:51Z <p>You cannot use operators on generic types (except for foo == null which is special cased) unless you add where T : class to indicate it is a reference type (then foo == bar is legal)</p> <p>Use <code>EqualityComparer&lt;T&gt;</code>.Default to do it for you. This will <strong>not</strong> work on types which only supply an operator overload for == without also either:</p> <ul> <li>implement <code>IEquatable&lt;T&gt;</code></li> <li>overrides object.Equals()</li> </ul> <p>In general implementing the == operator and not also doing at least one of these would be a very bad idea anyway so this is not likely to be an issue.</p> <pre><code>public bool IsDataChanged&lt;T&gt;() { T value1 = GetValue2; T value2 = GetValue1(); return !EqualityComparer&lt;T&gt;.Default.Equals(valueInDB, valueFromView); } </code></pre> <p>If you do not restrict to <code>IEquatable&lt;T&gt;</code> then the EqualityComparer default fallback may cause boxing when used with value types if they do not implement <code>IEquatable&lt;T&gt;</code> (if you control the types which are being used this may not matter). I am assuming you were using =! for performance though so restricting to the Generic type will avoid <strong>accidental</strong> boxing via the Object.Equals(object) route.</p> http://stackoverflow.com/questions/1333864/xml-serialization-of-interface-property/1376358#1376358 3 Answer by ShuggyCoUk for XML serialization of interface property ShuggyCoUk 2009-09-03T22:46:14Z 2009-10-22T09:42:56Z <p>This is simply an inherent limitation of declarative serialization where type information is not embedded within the output.</p> <p>On trying to convert <code>&lt;Flibble Foo="10" /&gt;</code> back into</p> <pre><code>public class Flibble { public object Foo { get; set; } } </code></pre> <p>How does the serializer know whether it should be an int, a string, a double (or something else)...</p> <p>To make this work you have several options but if you truly don't know till runtime the easiest way to do this is likely to be using the <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlattributeoverrides.aspx" rel="nofollow">XmlAttributeOverrides</a>.</p> <p>Sadly this will only work with base classes, not interfaces the best you can do there is to ignore the property which isn't sufficient for your needs.</p> <p>If you really must stay with interfaces you have three real options:</p> <h2>Hide it and deal with it in another property</h2> <p>Ugly, unpleasant boiler plate and much repetition but most consumers of the class will not have to deal with the problem:</p> <pre><code>[XmlIgnore()] public object Foo { get; set; } [(XmlElement("Foo")] [EditorVisibile(EditorVisibility.Advanced)] public string FooSerialized { get { /* code here to convert any type in Foo to string */ } set { /* code to parse out of get and make an instance of the proper type*/ } } </code></pre> <p>This is likely to become a maintenance nightmare...</p> <h2>Implement IXmlSerializable</h2> <p>Similar to the first option in that you take full control of things but</p> <ul> <li>Pros <ul> <li>You don't have nasty 'fake' properties hanging around.</li> <li>you can interact directly with the xml structure adding flexibility/versioning</li> </ul></li> <li>Cons <ul> <li>you may end up having to re-implement the wheel for all the other properties on the class</li> </ul></li> </ul> <p>Issues of duplication of effort are similar to the first.</p> <h2>Modify your property to use a wrapping type</h2> <pre><code>public sealed class XmlAnything&lt;T&gt; : IXmlSerializable { public XmlAnything() {} public XmlAnything(T t) { this.Value = t;} public T Value {get; set;} public void WriteXml (XmlWriter writer) { if (Value == null) { writer.WriteAttributeString("type", "null"); return; } Type type = this.Value.GetType(); XmlSerializer serializer = new XmlSerializer(type); writer.WriteAttributeString("type", type.AssemblyQualifiedName); serializer.Serialize(writer, this.Value); } public void ReadXml(XmlReader reader) { if(!reader.HasAttributes) throw new FormatException("expected a type attribute!"); string type = reader.GetAttribute("type"); reader.Read(); // consume the value if (type == "null") return;// leave T at default value XmlSerializer serializer = new XmlSerializer(Type.GetType(type)); this.Value = (T)serializer.Deserialize(reader); } public XmlSchema GetSchema() { return(null); } } </code></pre> <p>Using this would involve something like (in project P):</p> <pre><code>public namespace P { public interface IFoo {} public class RealFoo : IFoo { public int X; } public class OtherFoo : IFoo { public double X; } public class Flibble { public XmlAnything&lt;IFoo&gt; Foo; } public static void Main(string[] args) { var x = new Flibble(); x.Foo = new XmlAnything&lt;IFoo&gt;(new RealFoo()); var s = new XmlSerializer(typeof(Flibble)); var sw = new StringWriter(); s.Serialize(sw, x); Console.WriteLine(sw); } } </code></pre> <p>which gives you:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-16"?&gt; &lt;MainClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;Foo type="P.RealFoo, P, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"&gt; &lt;RealFoo&gt; &lt;X&gt;0&lt;/X&gt; &lt;/RealFoo&gt; &lt;/Foo&gt; &lt;/MainClass&gt; </code></pre> <p>This is obviously more cumbersome for users of the class though avoids much boiler plate.</p> <p>A happy medium may be merging the XmlAnything idea into the 'backing' property of the first technique. In this way most of the grunt work is done for you but consumers of the class suffer no impact beyond confusion with introspection.</p> http://stackoverflow.com/questions/1294128/obsolete-or-changed-functionality-from-f-1-9-6-3-to-1-9-6-16-the-2010-beta-and 7 Obsolete or Changed functionality from f# 1.9.6.3 to 1.9.6.16 (the 2010 beta and 2008 compatible release) ShuggyCoUk 2009-08-18T14:08:50Z 2009-09-26T23:56:07Z <p>Foundations of F# and Expert F# are probably the two most prevalent books used to learn f#.</p> <p>Both were written at the time of the 1.9.2/1.9.3 releases. The <a href="http://www.expert-fsharp.com" rel="nofollow">website for the Expert book</a> has some <a href="http://www.expert-fsharp.com/Updates/Expert-FSharp-Errata-Jan-27-2009.pdf" rel="nofollow">errata</a> and details some of the changes in the 2008 CTP release which were relatively minor.</p> <p>However the CTP release for the 2010 beta (and the corresponding 2008 compatible release) 1.9.6.16 changes <a href="http://blogs.msdn.com/dsyme/archive/2009/05/20/detailed-release-notes-for-the-f-may-2009-ctp-update-and-visual-studio-2010-beta1-releases.aspx" rel="nofollow">much more</a>.</p> <p>Since the MSDN documentation is largely non existent, especially in terms of changes and data is scattered around blogs I am finding it harder and harder to rely on the current books (especially the expert one) since the f# landscape has shifted too much underneath it.</p> <p>This question seeks to provide a (hopefully) comprehensive list of those areas which have changed and short details/links to further reading on how to deal with this.</p> <p>As the basis for this I have added some issue which impacted myself. <a href="http://blogs.msdn.com/dsyme/archive/2009/05/20/detailed-release-notes-for-the-f-may-2009-ctp-update-and-visual-studio-2010-beta1-releases.aspx" rel="nofollow">The previously linked blog post</a> lists many of the changes in terse form and is a good place to start but it doesn't cover everything by any means.</p> <p>Attempting to keep to a specific aspect per answer would be sensible since this will make reading it easier.</p> <p>In specific question form:</p> <p>What changes have occurred to f# from 1.9.6.3 to 1.9.6.16 that render previous examples (especially dead tree documentation not amenable to easy correction) incorrect or deprecated and what remedial actions are possible.</p> http://stackoverflow.com/questions/1451016/fail-safe-way-of-round-tripping-jvm-byte-code-to-text-representation-and-back/1463201#1463201 4 Answer by ShuggyCoUk for Fail-safe way of round-tripping JVM byte-code to text-representation and back ShuggyCoUk 2009-09-22T23:38:58Z 2009-09-25T11:23:20Z <p>The <a href="http://jakarta.apache.org/bcel/manual.html" rel="nofollow">BCEL project</a> provides a <a href="http://bcel.sourceforge.net/docs/JasminVisitor.html" rel="nofollow">JasminVisitor</a> which will convert class files into <a href="http://jasmin.sourceforge.net/" rel="nofollow">jasmin</a> assembly.</p> <p>This can be modified and then reassembled into class files. If no edits are made and the versions are kept compatible the the round trip should result in identical class files except that line number mapping may be lost. If you require a bit for bit identical copy for the round trip case you will likely need to alter the tool to take aspects of the code which are pure meta data as well.</p> <p>jasmin is rather old and is not designed with ease of actually writing full blown programs in assembly but for modifying string constant tables and constants it should be more than adequate.</p> http://stackoverflow.com/questions/1867857/have-you-ever-restricted-yourself-to-using-a-subset-of-language-features/1868626#1868626 Comment by ShuggyCoUk on Have you ever restricted yourself to using a subset of language features? ShuggyCoUk 2009-12-17T11:51:46Z 2009-12-17T11:51:46Z This is a very good example, when a language change relies on a runtime change as well this sort of thing happens. I would add that certain features do not work in the .Net Micro Framework for example, so if you are trying to write code for both you must use a limited subset http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability/1863895#1863895 Comment by ShuggyCoUk on Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-08T09:52:08Z 2009-12-08T09:52:08Z +1 I edited the grammar, hope you don't mind http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability/1863693#1863693 Comment by ShuggyCoUk on Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-08T09:48:42Z 2009-12-08T09:48:42Z I really like how Option&lt;T&gt; 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. http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability/1863650#1863650 Comment by ShuggyCoUk on Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-08T00:05:28Z 2009-12-08T00:05:28Z 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) http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability/1863693#1863693 Comment by ShuggyCoUk on Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-08T00:02:16Z 2009-12-08T00:02:16Z indeed, they make it explicit, it's still not null though. Option&lt;T&gt; is strongly typed so you can still reflect on it as well as ToString it without worrying about NullReferenceException for example. http://stackoverflow.com/questions/1863515/pros-cons-of-immutability-vs-mutability Comment by ShuggyCoUk on Pros. / Cons. of Immutability vs. Mutability ShuggyCoUk 2009-12-07T23:59:15Z 2009-12-07T23:59:15Z 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) http://stackoverflow.com/questions/1862614/flags-enumeration-with-multiple-zero-values-problem-textformatflags/1862839#1862839 Comment by ShuggyCoUk on Flags enumeration with multiple zero values problem (TextFormatFlags) ShuggyCoUk 2009-12-07T22:48:38Z 2009-12-07T22:48:38Z +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. http://stackoverflow.com/questions/1840765/less-defined-generics-in-c/1840776#1840776 Comment by ShuggyCoUk on Less defined generics in c#? ShuggyCoUk 2009-12-07T22:41:11Z 2009-12-07T22:41:11Z you can do it without the type being specified by yourself directly, but the <i>compiler</i> 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. http://stackoverflow.com/questions/1840765/less-defined-generics-in-c/1840801#1840801 Comment by ShuggyCoUk on Less defined generics in c#? ShuggyCoUk 2009-12-07T22:38:05Z 2009-12-07T22:38:05Z this doesn't work: List&lt;TimeSerie&lt;Object&gt;&gt; blah = new List&lt;TimeSerie&lt;int&gt;&gt;(); causes Cannot implicitly convert type `System.Collections.Generic.List&lt;TimeSerie&lt;int&gt;&gt;' to `System.Collections.Generic.List&lt;TimeSerie&lt;object&gt;&gt;'(CS0029)]&quot; http://stackoverflow.com/questions/1786890/c-why-cant-a-uint32-be-unboxed-as-uint64/1786931#1786931 Comment by ShuggyCoUk on C# why can't a UInt32 be unboxed as UInt64? ShuggyCoUk 2009-12-04T09:30:34Z 2009-12-04T09:30:34Z 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. http://stackoverflow.com/questions/275944/how-do-i-count-the-number-of-occurrences-of-a-char-in-a-string/275969#275969 Comment by ShuggyCoUk on How do I count the number of occurrences of a char in a String? ShuggyCoUk 2009-11-30T11:15:23Z 2009-11-30T11:15:23Z 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. http://stackoverflow.com/questions/1299064/how-to-set-all-row-heights-of-the-wpf-datagrid-when-one-row-height-is-adjusted/1816562#1816562 Comment by ShuggyCoUk on how to set all row heights of the wpf datagrid when one row height is adjusted ShuggyCoUk 2009-11-30T09:47:48Z 2009-11-30T09:47:48Z 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. http://stackoverflow.com/questions/1770912/non-random-weighted-distribution/1771701#1771701 Comment by ShuggyCoUk on Non-Random Weighted Distribution ShuggyCoUk 2009-11-29T20:50:18Z 2009-11-29T20:50:18Z note that there are rather more than 24 timezones, though simply rounding them to the nearest hour will likely be ok. http://stackoverflow.com/questions/1804659/c-extend-array-type-to-overload-operators/1804687#1804687 Comment by ShuggyCoUk on C# Extend array type to overload operators ShuggyCoUk 2009-11-26T17:28:51Z 2009-11-26T17:28:51Z In fact Marc has done it all for you - use his answer :) http://stackoverflow.com/questions/1804659/c-extend-array-type-to-overload-operators/1804841#1804841 Comment by ShuggyCoUk on C# Extend array type to overload operators ShuggyCoUk 2009-11-26T17:28:16Z 2009-11-26T17:28:16Z very good point about the immutability