User Jon Skeet - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:03:39Zhttp://stackoverflow.com/feeds/user/22656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810843#18108434Answer by Jon Skeet for Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?Jon Skeet2009-11-27T22:30:15Z2009-11-27T22:30:15Z<p>It's a reflector bug. It isn't really passing the property by reference.</p>
<p>Here's some C# code which will reproduce it.</p>
<pre><code>using System;
class Person
{
public string Name { get; set; }
}
class Test
{
static void Main(){} // Just make it easier to compile
static void Foo(Person p)
{
string tmp = p.Name;
Bar(ref tmp);
}
static void Bar(ref string x)
{
}
}
</code></pre>
<p>Reflector shows this code for <code>Foo</code>:</p>
<pre><code>private static void Foo(Person p)
{
Bar(ref p.Name);
}
</code></pre>
<p>Not only is this invalid C#, but it's misleading - it would suggest that changes made to <code>x</code> within <code>Bar</code> would somehow modify <code>p.Name</code> - where that's not the case when you look at the original C# code.</p>
<p>In your original sample, it makes even less sense as <code>UserName</code> is a read-only property!</p>
http://stackoverflow.com/questions/1810419/deleting-from-arraylist-java/1810428#18104281Answer by Jon Skeet for Deleting from ArrayList JavaJon Skeet2009-11-27T19:51:44Z2009-11-27T21:32:24Z<p>(Edited as I hadn't noticed the accessibility before.)</p>
<p>Unfortunately <code>ArrayList</code> doesn't expose a way of removing a whole range directly. However, you can remove the same index four times - as everything shuffles up, that should do what you want:</p>
<pre><code>int index = contactList.getSelectedIndex();
for (int i = 0; i < 4; i++)
{
People.remove(index);
}
</code></pre>
<p>However, <code>DefaultListModel</code> <em>does</em> support removing a range, so you can just do:</p>
<pre><code>int index = contactList.getSelectedIndex();
people.removeRange(index, index + 4);
</code></pre>
<p>I would expect that to have the right behaviour, removing the items from the underlying list as well. Assuming that's the case, that would be the best way of doing it I suspect. Then again, I don't know Swing very well :)</p>
http://stackoverflow.com/questions/1810172/md5-for-emails-too/1810186#181018610Answer by Jon Skeet for md5 for emails too?Jon Skeet2009-11-27T18:45:43Z2009-11-27T18:46:36Z<p>Do you not want to be able to get the email addresses back later on, such as to email them with news of an update? Hashing is a one-way process.</p>
<p>Using a hash for the email address would work in terms of the user entering their email address to get a new temporary password, in that you would have the address right there and then - but if you needed to email them later, you wouldn't have the information any more.</p>
http://stackoverflow.com/questions/1809850/java-checking-number-months/1809875#18098754Answer by Jon Skeet for Java Checking number monthsJon Skeet2009-11-27T17:29:12Z2009-11-27T18:01:33Z<p>Parsing dates and times yourself is a bad idea - as is using Java's built-in functionality.</p>
<p>I can't tell exactly what you want to do or what's wrong, but I think it's safe to say that using <a href="http://joda-time.sf.net" rel="nofollow">Joda Time</a> would be a good idea.</p>
<p>Then instead of using <code>get</code> with mystical constants - and adjusting for months being 0-based - you can just use <a href="http://joda-time.sourceforge.net/api-release/org/joda/time/ReadableDateTime.html#getMonthOfYear%28%29" rel="nofollow"><code>ReadableDateTime.getMonthOfYear()</code></a> or some other pleasantly-named method. Much nicer.</p>
<p>For instance, to get the current month, you'd use:</p>
<pre><code>int currentMonth = new DateTime().getMonthOfYear();
</code></pre>
<p>That uses the ISO calendar system and the current default time zone. Personally I'm not too fond of defaulting the time zone, so you may want:</p>
<pre><code>int currentMonth = new DateTime(DateTimeZone.UTC).getMonthOfYear();
</code></pre>
<p>I suspect the ISO calendar system will be fine for you though :)</p>
<p>(As ChssPly76 says, <code>cal.get(Calendar.MONTH)</code> will get you the 0-based month number with your current code, but that's a horrible API in my opinion.)</p>
<p>EDIT: Now you've updated your question, you should diagnose the problem by breaking it down a bit more. Is this a problem in terms of the user input, or comparing with the current month? If it's the "comparing with the current month" bit that's the problem, that's easy to show in a short but complete program which doesn't have all the rest of the stuff around it:</p>
<pre><code>import java.util.*;
public class Test
{
public static void main(String[] args)
{
// It's currently November
int userInput = 11;
Calendar cal = Calendar.getInstance();
int currentMonth = cal.get(Calendar.MONTH) + 1;
if (userInput == currentMonth)
{
System.out.println("Yes, that's the current month");
}
else
{
System.out.println("No, the current month is " + currentMonth);
}
}
}
</code></pre>
<p>I've compensated for <code>java.util.Calendar</code> using 0 months by adding one to the value returned rather than subtracting one from the user input, but it's the same basic premise.</p>
<p>Now, if it's getting the user input which is the problem, you don't need to bother with the current month - just check whether you're getting what you expect.</p>
<p>A lot of programming is basically dividing a problem into two pieces. Here you have two issues:</p>
<ul>
<li>Parsing user input</li>
<li>Comparing with the current month</li>
</ul>
<p>Work out which one is the problem, and edit your question to address <em>just that aspect</em>.</p>
http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number/1750002#17500028Answer by Jon Skeet for C# - how to determine whether a Type is a number Jon Skeet2009-11-17T16:19:38Z2009-11-27T16:52:29Z<p>Don't use a switch - just use a set:</p>
<pre><code>HashSet<Type> NumericTypes = new HashSet<Type>
{
typeof(decimal), typeof(byte), typeof(sbyte),
typeof(short), typeof(ushort), ...
};
</code></pre>
<p>EDIT: One advantage of this over using a type code is that when new numeric types are introduced into .NET (e.g. <a href="http://msdn.microsoft.com/en-us/library/system.numerics.biginteger%28VS.100%29.aspx" rel="nofollow">BigInteger</a> and <a href="http://msdn.microsoft.com/en-us/library/system.numerics.complex%28VS.100%29.aspx" rel="nofollow">Complex</a>) it's easy to adjust - whereas those types <em>won't</em> get a type code.</p>
http://stackoverflow.com/questions/1602713/value-assignment-in-c/1602825#16028256Answer by Jon Skeet for Value assignment in C#Jon Skeet2009-10-21T18:50:32Z2009-11-27T16:34:45Z<p>It's just syntactic sugar.</p>
<p>This:</p>
<pre><code>string[] s = {"all","in","all"};
</code></pre>
<p>is compiled to the same code as:</p>
<pre><code>string[] tmp = new string[3];
tmp[0] = "all";
tmp[1] = "in";
tmp[2] = "all";
string[] s = tmp;
</code></pre>
<p>Note that the array reference is not assigned to <code>s</code> until all the elements have been assigned. That isn't important in this particular case where we're declaring a <em>new</em> variable, but it would make a different in this situation:</p>
<pre><code>string[] s = { "first", "second" };
s = new string[] { s[1], s[0] };
</code></pre>
<p>The same is true for object and collection initializers - the variable is only assigned at the end.</p>
http://stackoverflow.com/questions/1809022/c-threads-interruption/1809031#18090315Answer by Jon Skeet for C# Threads - InterruptionJon Skeet2009-11-27T14:16:14Z2009-11-27T14:16:14Z<p>Normally you don't interrupt a thread at all... but if you try to, it won't actually be interrupted until it next blocks. From <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.interrupt.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>If this thread is not currently
blocked in a wait, sleep, or join
state, it will be interrupted when it
next begins to block.</p>
<p>ThreadInterruptedException is thrown
in the interrupted thread, but not
until the thread blocks. If the thread
never blocks, the exception is never
thrown, and thus the thread might
complete without ever being
interrupted.</p>
</blockquote>
http://stackoverflow.com/questions/1808395/cannot-use-space-in-xmlelementname/1808433#18084331Answer by Jon Skeet for Cannot use space in XMLElementNameJon Skeet2009-11-27T12:17:37Z2009-11-27T12:36:51Z<p>Well it's absolutely right - you <em>can't</em> have a space in an XML <a href="http://www.w3.org/TR/REC-xml/#NT-Name" rel="nofollow">element name</a>, or indeed in an HTML element name. Why do you think you need it? Image tags don't have spaces in the element name...</p>
<p>Are you sure you don't want to put the space in an attribute value?</p>
<p>Could you give us an example?</p>
<p>EDIT: Okay, so in your comment you want something like:</p>
<pre><code><img src="path" />
</code></pre>
<p>Here:</p>
<ul>
<li><code>img</code> is the <em>element</em> name</li>
<li><code>src</code> is an <em>attribute</em> name</li>
<li><code>path</code> is an attribute value</li>
</ul>
<p>So you'd use something like:</p>
<pre><code>writer.WriteStartElement("img");
writer.WriteAttributeString("src", "path");
// Any extra bits you wanted
writer.WriteEndElement();
</code></pre>
http://stackoverflow.com/questions/440156/when-is-net-4-0-and-visual-studio-2010-supposed-to-be-released/440201#44020110Answer by Jon Skeet for When is .NET 4.0 and Visual Studio 2010 supposed to be released?Jon Skeet2009-01-13T18:32:35Z2009-11-27T12:19:51Z<p>There's no fixed release date, but I personally expect it'll quite possibly be released in November or December 2009.</p>
<p>EDIT: Now the release date has now been announced as March 22nd 2010. So much for guesses made 10 months in advance :)</p>
<p>My <em>guess</em> is that there'll possible be one release candidate between what's currently available (beta 2) and then - but again, that's only a guess.</p>
http://stackoverflow.com/questions/1808380/wanted-librarysystem-ctrlseparator-file-in-c-net/1808400#18084000Answer by Jon Skeet for Wanted 'LibrarySystem.ctrlSeparator' file in C# .NetJon Skeet2009-11-27T12:10:45Z2009-11-27T12:10:45Z<p>I strongly suspect this is a custom library developed by whoever you got the solution from.</p>
<p>I suggest you ask <em>them</em> for the library. The only references on the web are your other posts.</p>
http://stackoverflow.com/questions/1807542/to-var-or-not-to-var-thoughts/1807579#18075792Answer by Jon Skeet for To var or not to var. Thoughts?Jon Skeet2009-11-27T09:08:22Z2009-11-27T09:08:22Z<p>Just as a clarification, it's as of C# 3, not .NET 3 - you can use <code>var</code> with C# 3 even if you're targeting .NET 2.0.</p>
<p>Here are the guidelines I've included in C# in Depth:</p>
<ul>
<li>If it’s important that someone reading the code knows the type of the variable at a glance,
use explicit typing.</li>
<li>If the variable is directly initialized with a constructor and the type name is long (which
often occurs with generics) consider using implicit typing.</li>
<li>If the precise type of the variable isn’t important, but its general nature is clear from the
context, use implicit typing to deemphasize how the code achieves its aim and
concentrate on the higher level of what it’s achieving.</li>
<li>Consult your teammates on the matter when embarking on a C# 3 project.</li>
<li>When in doubt, try a line both ways and go with your gut feelings.</li>
<li>Unless there’s a significant gain in code simplicity, I tend use explicit typing for
production code. (Implicit typing is wonderful for throwaway code though.)</li>
</ul>
http://stackoverflow.com/questions/1807359/so-confused-on-what-version-i-made-my-application-for-and-what-version-my-phone-r/1807371#18073712Answer by Jon Skeet for So confused on what version I made my application for and what version my phone runsJon Skeet2009-11-27T08:15:33Z2009-11-27T08:15:33Z<p>You don't necessarily need new <em>drivers</em> but it sounds like you need to install version 3.5 of the Compact Framework, which you can <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=E3821449-3C6B-42F1-9FD9-0041345B3385&displaylang=en" rel="nofollow">download here</a>.</p>
http://stackoverflow.com/questions/1807307/how-to-clear-an-array-in-visual-c/1807309#18073098Answer by Jon Skeet for How to clear an array in Visual C#Jon Skeet2009-11-27T07:54:22Z2009-11-27T07:54:22Z<p>You can call <a href="http://msdn.microsoft.com/en-us/library/system.array.clear.aspx" rel="nofollow">Array.Clear</a>:</p>
<pre><code>int[] x = new int[10];
for (int i = 0; i < 10; i++)
{
x[i] = 5;
}
Array.Clear(x, 0, x.Length);
</code></pre>
<p>Alternatively, depending on the situation, you may find it clearer to just create a new array instead. In particular, you then don't need to worry about whether some other code still has a reference to the array and expects the old values to be there.</p>
<p>I can't recall ever calling <code>Array.Clear</code> in my own code - it's just not something I've needed.</p>
<p>(Of course, if you're about to replace all the values anyway, you can do that without clearing the array first.)</p>
http://stackoverflow.com/questions/1805652/transforming-sql-procedure-to-linq/1805675#18056751Answer by Jon Skeet for Transforming SQL procedure to LinqJon Skeet2009-11-26T21:16:08Z2009-11-26T21:36:07Z<p>Well, a direct translation is pretty easy:</p>
<pre><code>var query = from car in dataContext.Cars
where car.Id == null || dataContext.CsvTable.Select(x => x.Id)
.Contains(car.Id)
where car.TypeId == null || dataContext.CsvTable.Select(x => x.TypeId)
.Contains(car.TypeId)
select car;
</code></pre>
<p>You'll have to try it to see if it actually creates the right SQL though.</p>
<p>You can simplify it somewhat:</p>
<pre><code>var csvIds = dataContext.CsvTable.Select(x => x.Id);
var query = from car in dataContext.Cars
where car.Id == null || csvIds.Contains(car.Id)
where car.TypeId == null || csvIds.Contains(car.TypeId)
select car;
</code></pre>
<p>(That may produce different SQL - I don't know, but it's worth a try.)</p>
http://stackoverflow.com/questions/1805510/what-is-method-dispatch/1805524#18055244Answer by Jon Skeet for What is Method Dispatch?Jon Skeet2009-11-26T20:30:18Z2009-11-26T20:30:18Z<p>It's hard to say without a context, but I'd describe it as the process which takes a method invocation in source code, decides which method requires executing, and executes it, performing any argument conversions, defaulting etc as required by the language.</p>
<p>The decision part of method dispatch may be purely at execution time (e.g. in a dynamic language), purely at compile time (e.g. calling a static method in C#/Java), or both (calling a virtual method in C#/Java).</p>
<p>Different languages can have significantly different approaches to method dispatch.</p>
http://stackoverflow.com/questions/1805292/why-my-xpath-request-to-xml-file-on-web-doesnt-work/1805310#18053103Answer by Jon Skeet for Why my XPath request to XML file on web doesn't work?Jon Skeet2009-11-26T19:26:42Z2009-11-26T20:27:24Z<p>The problem is the namespace. If you can use LINQ to XML, you can express this query quite easily. Otherwise, it slightly trickier - you'd want something like this:</p>
<pre><code>var doc = new XmlDocument();
doc.Load(url);
XPathNavigator navigator = doc.CreateNavigator();
XmlNamespaceManager nsMgr = new XmlNamespaceManager(nav.NameTable);
nsMgr.AddNamespace("gesmes", "http://www.gesmes.org/xml/2002-08-01");
nsMgr.AddNamespace("ns0", "http://www.ecb.int/vocabulary/2002-08-01/eurofxref");
var node = doc.SelectSingleNode("//ns0:Cube[@currency=\"USD\""], nsMgr);
var value = node.Attributes["rate"].Value;
</code></pre>
<p>(You don't really <em>need</em> the gesmes namespace in the manager there, but it'll make it easier if you need to look up any other elements.)</p>
<p>EDIT: Peter Murray-Rust's answer is a nice alternative here - which approach you take depends on how specific you want to be able the element to find. If you only need the namespace for one query, it makes sense to include the URI directly in the XPath; if you'll need it for more than that, you'll get more concise queries using the namespace manager.</p>
http://stackoverflow.com/questions/1805284/better-use-of-methods-or-properties-whats-different/1805300#18053005Answer by Jon Skeet for Better use of methods or properties, whats different?Jon Skeet2009-11-26T19:23:45Z2009-11-26T19:23:45Z<p>The property is definitely incorrect - the setter will throw a StackOverflowException because it just recurses.</p>
<p>Even the getter is very odd though - properties normally reflect some aspect of the property or type, rather than just creating a new object and forgetting it.</p>
<p>Personally I'd go with:</p>
<pre><code>public static DataSet CreateWindows()
{
return new DataSet();
}
</code></pre>
<p>That gives the correct impression that it's creating something new - <code>GetWindows</code> would imply caching, or that the data set is part of the static state of the type.</p>
<p>If there's a possibility that at a later date you'll want to <em>make</em> it do caching, then <code>GetWindows</code> is reasonable - but I'd then document that it may or may not create a new result each time.</p>
http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters/1804912#18049123Answer by Jon Skeet for How do you read a text file without losing odd characters?Jon Skeet2009-11-26T17:32:58Z2009-11-26T17:32:58Z<p>There's no such concept as "no encoding". You <em>must</em> find out the right encoding, otherwise you can't possibly interpret the data correctly.</p>
<p>When you say "chr(187)" what Unicode character do you mean?</p>
<p>Some encodings you might want to try:</p>
<ul>
<li>Encoding.Default - the system default encoding</li>
<li>Encoding.GetEncoding(28591) - ISO-Latin-1</li>
<li>Encoding.UTF8 - very common in modern files</li>
</ul>
http://stackoverflow.com/questions/1804540/should-junit-tests-be-javadocced/1804587#18045874Answer by Jon Skeet for Should JUnit tests be javadocced?Jon Skeet2009-11-26T16:19:35Z2009-11-26T16:26:49Z<p>If the purpose of the test is obvious, I don't bother documenting it.</p>
<p>If it's non-obvious because it deals with some obscure situation - or if I want to refer to a specific bug, for example - in <em>that</em> case I'll add documentation. I don't document exceptions throw etc though - just a quick summary of the method. This happens relatively rarely. I'm more likely to add documentation for helper methods used within multiple tests.</p>
http://stackoverflow.com/questions/1804341/reflection-emit-better-than-getvalue-setvalue-s/1804420#18044201Answer by Jon Skeet for Reflection.Emit better than GetValue & SetValue :SJon Skeet2009-11-26T15:45:22Z2009-11-26T15:45:22Z<p>If you're fetching/setting the same property many times, then using something to build a typesafe method will indeed be faster than reflection. However, I would suggest using <a href="http://msdn.microsoft.com/en-us/library/s3860fy3.aspx" rel="nofollow"><code>Delegate.CreateDelegate</code></a> instead of Reflection.Emit. It's easier to get right, and it's still blazingly fast.</p>
<p>I've used this in my Protocol Buffers implementation and it made a huge difference vs <code>PropertyInfo.GetValue/SetValue</code>. As others have said though, only do this after proving that the simplest way is too slow.</p>
<p>I have a <a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2008/08/09/making-reflection-fly-and-exploring-delegates.aspx" rel="nofollow">blog post</a> with more details if you decide to go down the <code>CreateDelegate</code> route.</p>
http://stackoverflow.com/questions/1803457/optimising-searching-of-a-2-dimensional-array-with-linq/1803490#18034905Answer by Jon Skeet for Optimising Searching of a 2-dimensional Array with LINQJon Skeet2009-11-26T12:46:49Z2009-11-26T14:21:38Z<p>One optimisation is to use <code>Any</code> instead of <code>Count</code> - that way as soon as one matching column has been found, the row can be returned.</p>
<pre><code>rawData.Where(row => row.Any(column => column.ToString()
.ToLower().Contains(sSearch)))
</code></pre>
<p>You should also be aware that <code>ToLower</code> is culture-sensitive. If may not be a problem in your case, but it's worth being aware of. <code>ToLowerInvariant</code> <em>may</em> be a better option for you. It's a shame there isn't an overload for <code>Contains</code> which lets you specify that you want a case-insensitive match...</p>
<p>EDIT: You're using a regular expression now - have you tried <code>RegexOptions.Compiled</code>? It may or may not help...</p>
http://stackoverflow.com/questions/1803379/doubles-lose-digits-under-special-circumstances-no-int-conversions-either/1803398#180339810Answer by Jon Skeet for Doubles lose digits under special circumstances (No int conversions either)Jon Skeet2009-11-26T12:24:39Z2009-11-26T12:24:39Z<p>Yes, DirectX does indeed change things - it sets a bit on the FPU to change how it deals with arithmetic. That's going to be the cause of the issue - although the normal warnings of expecting decimal arithmetic to give "accurate" results when dealing with binary floating point numbers still applies, of course. The numbers you've shown aren't the <em>exact</em> values of the doubles in the first place.</p>
<p>If you want to avoid DirectX changing things, have a look at <a href="http://stackoverflow.com/questions/1201051/floating-point-precision">this question</a>, and in particular this bit of Greg's answer:</p>
<blockquote>
<p>You can tell Direct3D not to mess with
the FPU precision by passing the
<a href="http://msdn.microsoft.com/en-us/library/ee416457%28VS.85%29.aspx" rel="nofollow"><code>D3DCREATE_FPU_PRESERVE</code></a> flag to
CreateDevice. There is also a managed
code equivalent to this flag
(<a href="http://msdn.microsoft.com/en-us/library/ms859062.aspx" rel="nofollow"><code>CreateFlags.FpuPreserve</code></a>) if you need
it.</p>
</blockquote>
http://stackoverflow.com/questions/1803256/getting-the-sum-of-a-value-in-linq/1803282#18032828Answer by Jon Skeet for Getting the sum of a value in LinqJon Skeet2009-11-26T12:00:30Z2009-11-26T12:00:30Z<p>You want to group by both the category and the code, so you'll want an anonymous type for that - then just sum the quantities. You can do this in a single call to <code>GroupBy</code> if you use the <a href="http://msdn.microsoft.com/en-us/library/bb549393.aspx" rel="nofollow">right overload</a>:</p>
<pre><code>var query = list.GroupBy(
item => new { item.Category, item.Code },
(key, group) => new Foo { Category = key.Category,
Code = key.Code,
Quantity = group.Sum(x => x.Quantity) });
</code></pre>
<p>If you want to do this with a query expression, you can use:</p>
<pre><code>var query = from item in list
group item by new { item.Category. item.Code } into items
select new Foo { Category = items.Key.Category,
Code = items.Key.Code,
Quantity = items.Sum(x => x.Quantity) });
</code></pre>
http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1802686#18026862Answer by Jon Skeet for Is there an elegant way to remove nulls while transforming a Collection using Google Collections?Jon Skeet2009-11-26T09:52:31Z2009-11-26T09:52:31Z<p>Firstly, I'd create a constant filter somewhere:</p>
<pre><code>public static final Predicate<Object> NULL_FILTER = new Predicate<Object>() {
@Override
public boolean apply(Object input) {
return input != null;
}
}
</code></pre>
<p>Then you can use:</p>
<pre><code>Iterable<String> ids = Iterables.transform(matchingComputers,
new Function<Computer, String>() {
public String apply(Computer from) {
return from.getResourceId();
}
}));
Collection<String> resourceIds = Lists.newArrayList(
Iterables.filter(ids, NULL_FILTER));
</code></pre>
<p>You can use the same null filter everywhere in your code.</p>
<p>If you use the same computing function elsewhere, you can make that a constant too, leaving just:</p>
<pre><code>Collection<String> resourceIds = Lists.newArrayList(
Iterables.filter(
Iterables.transform(matchingComputers, RESOURCE_ID_PROJECTION),
NULL_FILTER));
</code></pre>
<p>It's certainly not as nice as the C# equivalent would be, but this is all going to get a <em>lot</em> nicer in Java 7 with closures and extension methods :)</p>
http://stackoverflow.com/questions/1802484/listing-properties-checking-if-a-property-is-readonly/1802497#18024972Answer by Jon Skeet for Listing Properties / Checking if a Property is ReadOnlyJon Skeet2009-11-26T09:14:26Z2009-11-26T09:21:51Z<p>You can do this with reflection. Use <code>foo.GetType()</code> to get the type of a particular object. Then use <code>Type.GetProperties()</code> to find all the properties. For each property you can find out whether it's writable using <code>PropertyInfo.CanWrite</code>.</p>
<p>Here's a simple example:</p>
<pre><code>Option Strict On
Imports System
Imports System.Reflection
Public class Sample
ReadOnly Property Foo As String
Get
Return "Foo!"
End Get
End Property
Property Bar As String
Get
Return "Ar!"
End Get
Set
' Ignored in sample
End Set
End Property
End Class
Public Class Test
Public Shared Sub Main()
Dim s As Sample = New Sample()
Dim t As Type = s.GetType()
For Each prop As PropertyInfo in t.GetProperties
Console.WriteLine(prop.Name)
If Not prop.CanWrite
Console.WriteLine(" (Read only)")
End If
Next prop
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/1802380/does-extension-method-come-under-object-oriented-concept-in-c/1802465#18024653Answer by Jon Skeet for Does extension method come under object oriented concept in c#?Jon Skeet2009-11-26T09:07:35Z2009-11-26T09:07:35Z<p>Eric Lippert has <a href="http://blogs.msdn.com/ericlippert/archive/2008/10/28/the-future-of-c-part-two.aspx" rel="nofollow">blogged about this</a> and I suspect I can't do much better than to quote him:</p>
<blockquote>
<p>So, yes, the oft-heard criticism that
"extension methods are not
object-oriented" is entirely correct,
but also rather irrelevant. Extension
methods certainly are not
object-oriented. They put the code
that manipulates the data far away
from the code that declares the data,
they cannot break encapsulation and
talk to the private state of the
objects they appear to be methods on,
they do not play well with
inheritance, and so on. They're
procedural programming in a convenient
object-oriented dress.</p>
<p>They're also incredibly convenient and
make LINQ possible, which is why we
added them. The fact that they do not
conform to some philosophical ideal of
what makes an object-oriented language
was not really much of a factor in
that decision.</p>
</blockquote>
<p>I would add, however, that they're useful beyond just LINQ - for the same reason that they're useful <em>in</em> LINQ. It's really nice to be able to express algorithms which work on arbitrary implementations of a particular interface (such as <code>IEnumerable<T></code> in LINQ to Obhects). Such algorithms typically don't have any context beyond the interfaces you're working on, so they're often naturally static.</p>
<p>If you accept that you've got some static utility method, which syntax would you rather use?</p>
<pre><code>// Traditional
CollectionUtils.Sort(collection);
// Extension methods
collection.Sort();
</code></pre>
<p>The latter is simply more readable in my opinion. It concisely expresses what you want to do. It doesn't make it clear <em>how</em> you want to do it, but that's less important for <em>most</em> of the time - and more important when you're debugging that particular line, of course.</p>
http://stackoverflow.com/questions/1802342/please-show-me-a-situtation-which-shows-need-for-delegates-or-function-point/1802375#18023757Answer by Jon Skeet for Please show me a situtation which shows `need` for Delegates (or) function pointers.Jon Skeet2009-11-26T08:50:03Z2009-11-26T08:56:06Z<p>I'm not sure why you don't want to use a GUI example: the concept of "when I click a button, I want X to happen - now how to I express X?" is quite a good one.</p>
<p>Other examples:</p>
<ul>
<li>I want to start a thread: how do I express what I want it to do?</li>
<li>I want to filter some data: how do I express the filter?</li>
<li>I want to project some data: how do I express the projection?</li>
<li>I want to download a file from the web asynchronously: how do I express what I want to happen when it's finished downloading?</li>
</ul>
<p>Basically each of these is a case of saying, "I want to express some code in a simple way." In each case you <em>could</em> use a single method interface - delegates/function pointers are just a more convenient way of doing that.</p>
<p>Indeed, if some of the students are used to using single method interfaces (e.g. <code>Runnable</code> in Java) then that's probably a good starting point. Imagine if you could implement an interface by saying "just use this method over here..." (And in Java 7 it looks like you'll be able to do just that; they're using single method interfaces and method references in lieu of dedicated delegate types.) From a C# background you can also compare the <a href="http://msdn.microsoft.com/en-us/library/8ehhxeaf.aspx" rel="nofollow"><code>IComparer<T></code></a> interface with the <a href="http://msdn.microsoft.com/en-us/library/cfttsh47.aspx" rel="nofollow"><code>Comparer<T></code></a> delegate.</p>
<p>Of course when you've got the idea of delegates, you can then introduce lambda expressions (if it's a C# course) showing them how useful it is to be able to express that bit of logic "inline". Then show them how it's useful to be able to interact with the local environment, using lambdas as closures...</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion346What's your most controversial programming opinion?Jon Skeet2009-01-02T13:14:26Z2009-11-25T23:10:09Z
<p>This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately.</p>
<p>The idea for this question came from the comment thread from <a href="http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language#282342">my answer</a> to the <a href="http://stackoverflow.com/questions/282329">"What are five things you hate about your favorite language?" question</a>. I contended that classes in C# should be sealed by default - I won't put my reasoning in the question, but I might write a fuller explanation as an answer to this question. I was surprised at the heat of the discussion in the comments (25 comments currently).</p>
<p>So, what contentious opinions do <em>you</em> hold? I'd rather avoid the kind of thing which ends up being pretty religious with relatively little basis (e.g. brace placing) but examples might include things like "unit testing isn't actually terribly helpful" or "public fields are okay really". The important thing (to me, anyway) is that you've got reasons behind your opinions.</p>
<p>Please present your opinion and reasoning - I would encourage people to vote for opinions which are well-argued and interesting, whether or not you happen to agree with them.</p>
http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net100What's the strangest corner case you've seen in C# or .NET?Jon Skeet2008-10-11T19:30:45Z2009-11-25T21:42:14Z
<p>I collect a few corner cases and <a href="http://www.yoda.arachsys.com/csharp/teasers.html" rel="nofollow">brain teasers</a> and would always like to hear more. The page only really covers C# language bits and bobs, but I also find core .NET things interesting too. For example, here's one which isn't on the page, but which I find incredible:</p>
<pre><code>string x = new string(new char[0]);
string y = new string(new char[0]);
Console.WriteLine(object.ReferenceEquals(x, y));
</code></pre>
<p>I'd expect that to print False - after all, "new" (with a reference type) <em>always</em> creates a new object, doesn't it? The specs for both C# and the CLI indicate that it should. Well, not in this particular case. It prints True, and has done on every version of the framework I've tested it with. (I haven't tried it on Mono, admittedly...)</p>
<p>Just to be clear, this is only an example of the kind of thing I'm looking for - I wasn't particularly looking for discussion/explanation of this oddity. (It's not the same as normal string interning; in particular, string interning doesn't normally happen when a constructor is called.) I was really asking for similar odd behaviour.</p>
<p>Any other gems lurking out there?</p>
http://stackoverflow.com/questions/1800083/what-is-the-difference-between-release-and-iteration/1800104#18001042Answer by Jon Skeet for What is the difference between release and iteration?Jon Skeet2009-11-25T21:31:51Z2009-11-25T21:31:51Z<p>An iteration can be purely internal. A release goes out to a customer.</p>
http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810843#1810843Comment by Jon Skeet on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?Jon Skeet2009-11-27T22:55:39Z2009-11-27T22:55:39Z@BenAlabaster: My "Reflector shows this code..." bit was cut and pasted right from reflector too :)http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-shoComment by Jon Skeet on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?Jon Skeet2009-11-27T22:25:43Z2009-11-27T22:25:43Z@Ben: I'm coming, I'm coming... give me a couple of minutes more :)http://stackoverflow.com/questions/1810419/deleting-from-arraylist-java/1810428#1810428Comment by Jon Skeet on Deleting from ArrayList JavaJon Skeet2009-11-27T22:09:15Z2009-11-27T22:09:15Z@rsp: I think I would personally find that harder to understand. It's more efficient, mind you :)http://stackoverflow.com/questions/1810419/deleting-from-arraylist-java/1810428#1810428Comment by Jon Skeet on Deleting from ArrayList JavaJon Skeet2009-11-27T21:29:54Z2009-11-27T21:29:54ZOops. My bad - will edit.http://stackoverflow.com/questions/1809850/java-checking-number-months/1809875#1809875Comment by Jon Skeet on Java Checking number monthsJon Skeet2009-11-27T18:47:12Z2009-11-27T18:47:12Z@daddycardona: I'm afraid I really still don't understand what you're trying to achieve. I think the problem here isn't about computing - it's about communication. Slow yourself down, and write in full sentences with appropriate punctuation and capitalization. Read your text afterwards, and consider whether you'd understand it, with no other background information.http://stackoverflow.com/questions/1809850/java-checking-number-monthsComment by Jon Skeet on Java Checking number monthsJon Skeet2009-11-27T18:02:14Z2009-11-27T18:02:14Z@daddycardona: I've edited my answer to help you understand not only how to solve this problem, but how to solve future problems and how to ask for help more effectively. Please take a look.http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number/1750024#1750024Comment by Jon Skeet on C# - how to determine whether a Type is a number Jon Skeet2009-11-27T17:43:55Z2009-11-27T17:43:55ZThis would need to be re-engineered for the new numeric types in .NET 4.0 which don't have type codes.http://stackoverflow.com/questions/1809850/java-checking-number-months/1809875#1809875Comment by Jon Skeet on Java Checking number monthsJon Skeet2009-11-27T17:35:28Z2009-11-27T17:35:28Z@extraneon: When it comes to date and time APIs, I don't look any further than Joda Time. I seem to recall looking at the apache commons date and time libraries a while ago and not being too impressed.http://stackoverflow.com/questions/1602713/value-assignment-in-c/1602825#1602825Comment by Jon Skeet on Value assignment in C#Jon Skeet2009-11-27T17:28:03Z2009-11-27T17:28:03Z@Pavel: Actually I withdraw my garbage collection comment - this is only appropriate for constants anyway. But <code>ldstr</code> is only for a single strings, not arrays of strings, right?http://stackoverflow.com/questions/1809022/c-threads-interruption/1809031#1809031Comment by Jon Skeet on C# Threads - InterruptionJon Skeet2009-11-27T15:07:50Z2009-11-27T15:07:50ZAn example of what? I can't remember the last time I wanted to interrupt a thread, and it would be pointless without context to be honest. The call itself is simple enough...http://stackoverflow.com/questions/1807542/to-var-or-not-to-var-thoughts/1807578#1807578Comment by Jon Skeet on To var or not to var. Thoughts?Jon Skeet2009-11-27T09:14:09Z2009-11-27T09:14:09ZWhy, out of interest?http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806221#1806221Comment by Jon Skeet on Detect months with 31 daysJon Skeet2009-11-27T00:10:52Z2009-11-27T00:10:52ZThat's not valid C#... but <code>if (new[] { 4, 6, 9, 11].Contains(m))</code> is...http://stackoverflow.com/questions/1805652/transforming-sql-procedure-to-linq/1805926#1805926Comment by Jon Skeet on Transforming SQL procedure to LinqJon Skeet2009-11-26T23:07:58Z2009-11-26T23:07:58ZI thought you said Contains wasn't supported?http://stackoverflow.com/questions/1805652/transforming-sql-procedure-to-linq/1805675#1805675Comment by Jon Skeet on Transforming SQL procedure to LinqJon Skeet2009-11-26T21:55:41Z2009-11-26T21:55:41Z... and this is why you need to make your question clear. Please update the question with <i>all</i> the relevant information, and I'll take another look later.http://stackoverflow.com/questions/1805652/transforming-sql-procedure-to-linq/1805675#1805675Comment by Jon Skeet on Transforming SQL procedure to LinqJon Skeet2009-11-26T21:35:59Z2009-11-26T21:35:59ZThanks, fixed :)