c# Programming Glossary: guess
ObservableCollection not noticing when Item in it changes (even with INotifyPropertyChanged) http://stackoverflow.com/questions/1427471/observablecollection-not-noticing-when-item-in-it-changes-even-with-inotifyprop But it actually doesn't fire when an item is changed. I guess you'll need a more bruteforce method then public class CollectionViewModel..
How to properly clean up Excel interop objects http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects your app is still holding references to COM objects. I guess you're invoking at least one member of a COM object without..
TransactionScope automatically escalating to MSDTC on some machines? http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines escalates to DTC This just seems broken to me but I guess I can understand if every call to SqlConnection.Open is grabbing..
How do I create 7-Zip archives with .NET? http://stackoverflow.com/questions/222030/how-do-i-create-7-zip-archives-with-net File.7z is not supported archive . 7Zip SDK aka LZMA SDK I guess I'm not smart enough to figure out how to use this which is..
When to Use Static Classes in C# http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp to use no instantiation no disposal just fire'n'forget. I guess this was my first unwitting attempt at creating a service oriented..
Setting Objects to Null/Nothing after use in .NET http://stackoverflow.com/questions/2785/setting-objects-to-null-nothing-after-use-in-net IDisposable There isn't any point in trying to second guess the GC and its management strategies because it's self tuning..
Can't operator == be applied to generic types in C#? http://stackoverflow.com/questions/390900/cant-operator-be-applied-to-generic-types-in-c return x y causes the overloaded operator to be called. I guess without specifying the type as a where the compiler can't infer..
Compare using Thread.Sleep and Timer for delayed execution http://stackoverflow.com/questions/391621/compare-using-thread-sleep-and-timer-for-delayed-execution call Dispose in the callback though I haven't tried this I guess it is possible that the Timer might be locked during the callback.. the Timer might be locked during the callback . Edit No I guess you can't do this since you have to specify the callback parameter..
Inline functions in C#? http://stackoverflow.com/questions/473782/inline-functions-in-c functions . Overall yes this is a hint to compiler but I guess that is what was asked for. Thank you for the comments. share..
the type or namespace name could not be found http://stackoverflow.com/questions/4764978/the-type-or-namespace-name-could-not-be-found 4 and now I have a successful build. Thanks everyone I guess it figures that after all that time spent searching online I.. online I find the solution minutes after posting I guess the trick is knowing the right question to ask.. share improve..
VS2010 does not show unhandled exception message in a WinForms Application on a 64-bit version of Windows http://stackoverflow.com/questions/4933958/vs2010-does-not-show-unhandled-exception-message-in-a-winforms-application-on-a don't have this problem with my existing C# projects. So I guess that my new projects are created with some strange default settings...
Requested registry access is not allowed http://stackoverflow.com/questions/562350/requested-registry-access-is-not-allowed access is not allowed under Windows 7. Vista and 2008 I guess too. How should I modify my code to add UAC support c# .net..
How would you code an efficient Circular Buffer in Java or C# http://stackoverflow.com/questions/590069/how-would-you-code-an-efficient-circular-buffer-in-java-or-c-sharp high concurrency in any case. Methods should be .Add and I guess .List where I retrieve all the entries. On second thought Retrieval..
How to generate and validate a software license key? http://stackoverflow.com/questions/599837/how-to-generate-and-validate-a-software-license-key payed the license a key that basically isn't theirs . I guess I should also tie the key to the version of application somehow..
Tree data structure in C# http://stackoverflow.com/questions/66893/tree-data-structure-in-c-sharp was looking for a tree or graph data structure in C# but I guess there isn't one provided. http msdn.microsoft.com en us library..
Create code first, many to many, with additional fields in association table http://stackoverflow.com/questions/7050404/create-code-first-many-to-many-with-additional-fields-in-association-table member.MemberComments.Select mc mc.Comment I guess that lazy loading will fetch the comments automatically behind..
How can I detect the encoding/codepage of a text file http://stackoverflow.com/questions/90838/how-can-i-detect-the-encoding-codepage-of-a-text-file François or something with your human intelligence you can guess this. I've created a small app that the user can use to open.. you need to be told it. You can analyse the bytes and guess it but that can give some bizarre sometimes amusing results...
|