c# Programming Glossary: undocumented
Translate Queryable<T> back to IMongoQuery http://stackoverflow.com/questions/10261156/translate-queryablet-back-to-imongoquery mapped to. In the short term you could use the following undocumented internal methods to find out what MongoDB query the LINQ query.. But at some point you might need to switch from these undocumented methods to officially supported methods the undocumented methods.. undocumented methods to officially supported methods the undocumented methods might change or be renamed in the future . share improve..
Drag and Drop between Instances of the same Windows Forms Application http://stackoverflow.com/questions/1201812/drag-and-drop-between-instances-of-the-same-windows-forms-application come up with a workable solution. It seems there is some undocumented strangeness going on under the covers with .NET and its OLE..
What is the __DynamicallyInvokable attribute for? http://stackoverflow.com/questions/12550749/what-is-the-dynamicallyinvokable-attribute-for c# dynamic invoke share improve this question It is undocumented but it looks like one of the optimizations in .NET 4.5. It appears..
Await and SynchronizationContext in a managed component hosted by an unmanaged app http://stackoverflow.com/questions/19535147/await-and-synchronizationcontext-in-a-managed-component-hosted-by-an-unmanaged-a default . If it is not a bug then it's a very unpleasant undocumented behavior which may seriously affect some component developers...
Should I seal all classes I know shouldn't ever be used as a base class? http://stackoverflow.com/questions/2164170/should-i-seal-all-classes-i-know-shouldnt-ever-be-used-as-a-base-class that shipping an undesigned rapidly implemented untested undocumented unmaintained feature with unknown security risks doesn't harm..
is it possible to create a multilanguage installer using WIX? http://stackoverflow.com/questions/2340605/is-it-possible-to-create-a-multilanguage-installer-using-wix msi using wix and custom build scripts They say it is undocumented feature of Microsoft Installer so please be careful using it...
Where to learn about VS debugger 'magic names' http://stackoverflow.com/questions/2508828/where-to-learn-about-vs-debugger-magic-names debugging share improve this question These are undocumented implementation details of the compiler and subject to change..
How frequent is DateTime.Now updated ? or is there a more precise API to get the current time? http://stackoverflow.com/questions/307582/how-frequent-is-datetime-now-updated-or-is-there-a-more-precise-api-to-get-the lastticks diff It turns out there exists an undocumented function which can alter the timer resolution. I haven't investigated..
translate Perl regex to .NET http://stackoverflow.com/questions/3417644/translate-perl-regex-to-net expression pattern yes no . Character class subtraction undocumented a z d w Balancing Group name . This could be simulated with..
Comparison of XSD Code Generators http://stackoverflow.com/questions/386155/comparison-of-xsd-code-generators some arguments to be in a certain order as well as some undocumented dependencies eg automatic parameters .NET version are order..
Capturing binary output from Process.StandardOutput http://stackoverflow.com/questions/4143281/capturing-binary-output-from-process-standardoutput cmdProcess.StandardOutput.EndOfStream Consume the initial undocumented BAM data br.ReadBytes 23 ... more parsing follows But when I..
How to keep the installer's version number in sync with the installed assemblies' version numbers? http://stackoverflow.com/questions/422344/how-to-keep-the-installers-version-number-in-sync-with-the-installed-assemblies path which is a pretty freaking common use case to be undocumented and have no idea if it's even possible to do this. Any ideas..
Why is TypedReference behind the scenes? It's so fast and safe… almost magical! http://stackoverflow.com/questions/4764573/why-is-typedreference-behind-the-scenes-its-so-fast-and-safe-almost-magical __makeref and __refvalue are language extensions and are undocumented in the C# Language Specification the constructs used to implement..
Use XML includes or config references in app.config to include other config files' settings http://stackoverflow.com/questions/480538/use-xml-includes-or-config-references-in-app-config-to-include-other-config-file and eventually found one. Enter one of those oh so beloved undocumented or in this case just poorly documented features that Microsoft..
How do I create a HashCode in .net (c#) for a string that is safe to store in a database? http://stackoverflow.com/questions/5154970/how-do-i-create-a-hashcode-in-net-c-for-a-string-that-is-safe-to-store-in-a hash with this code. The problems come when you rely on undocumented hashing i.e. something which obeys GetHashCode but is in no..
Doxygen: hiding private/protected method…and tips http://stackoverflow.com/questions/562763/doxygen-hiding-private-protected-method-and-tips tag is set to YES Doxygen will hide all # undocumented members of documented classes files or namespaces. # If set.. tag is set to YES Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. #..
MemoryCache Strangeness http://stackoverflow.com/questions/6895956/memorycache-strangeness and is also dependent on the polling interval and other undocumented variables. However even taking into account these variances..
C# Call Graph Generation Tool http://stackoverflow.com/questions/793685/c-sharp-call-graph-generation-tool Graph Generation Tool I just got a heaping pile of mostly undocumented C# code and I'd like to visualize it's structure before I dive..
|