Browsing 7239 questions and answers with Jon Skeet
The clue is in the error message: The multi-part identifier "XXXX.edu" could not be bound. That strongly suggests that the problem isn't with identifying your table - it's with the bit that ends with "edu", which seems like to be an... more 5/23/2016 6:32:39 AM
You're starting the process, but you're trying to use the file before it's had much of a chance to get going. I suspect you need to wait for it to finish: zipping.WaitForExit(); more 5/22/2016 7:54:40 PM
LINQ is inherently about querying, not modifying. But there's already a method that does this - Array.Clear: Array.Clear(array, 0, array.Length); That's assuming you want to clear an existing array, of course. Your current method... more 5/22/2016 7:37:44 AM
and then sets the value of min to null No it doesn't. It sets the final used element of the array to null, so that the array no longer holds a reference to that object. An object can only be garbage collected when there are no more... more 5/22/2016 7:25:08 AM
So, what's the problem here? The first problem is that within D<C>, C refers to the type parameter called, C, not the class C that extends B. Next, even ignoring generics, C c = new A(); // Invalid ... wouldn't compile...... more 5/21/2016 1:47:50 PM
I would think about the problem differently - for everything in oddArr to be greater than everything in evenArr, then the minimum of oddArr has to be greater than the maximum of evenArr: if (oddArr.Min() > evenArr.Max()) (You'll need... more 5/21/2016 7:49:38 AM
You're meant to add the this modifier to the method: public static class FooExtensions { public static void DoSomething(this Foo foo) { ... } } That makes it an extension method. In general thought, I wouldn't try... more 5/21/2016 7:48:16 AM
Well, you can make your existing code compile with a trivial modification: public static void main(String[] args) { List<Integer> numbers = new ArrayList<>(Arrays.asList(1, 2, 3, 5, 8, 13, 21)); ... more 5/20/2016 3:41:22 PM
How do I force those projects to use those specific versions? You can't, basically. Certainly not even close to easily. Even though Project A doesn't directly use the 3rd party DLLs, the CLR will still have to load them... at which... more 5/20/2016 11:43:03 AM
As I try to compare two variables with different values by calling isEqual() method. You don't have variables with different values, because you only have one value - a static variable: private static double precision; (Change the... more 5/20/2016 6:17:14 AM