c# Programming Glossary: docs
GMail SMTP via C# .Net errors on all ports http://stackoverflow.com/questions/1082216/gmail-smtp-via-c-sharp-net-errors-on-all-ports the remote server . If I change the port to 465 as gmail docs suggest I get a timeout every time. I've read that 465 isn't..
Detecting moved files using FileSystemWatcher http://stackoverflow.com/questions/1286114/detecting-moved-files-using-filesystemwatcher share improve this question According to the docs Common file system operations might raise more than one event...
Is there a way to indefinitely pause a thread? http://stackoverflow.com/questions/142826/is-there-a-way-to-indefinitely-pause-a-thread similar API SuspendThread and ResumeThread . The following docs for SuspendThread give a nice summary of the dangers of the..
What's the best way of implementing a thread-safe Dictionary? http://stackoverflow.com/questions/157933/whats-the-best-way-of-implementing-a-thread-safe-dictionary handler this e more IDictionary members... Edit The MSDN docs point out that enumerating is inherently not thread safe. That..
Does garbage collector call Dispose()? http://stackoverflow.com/questions/1691846/does-garbage-collector-call-dispose look up the C# best practices for the Dispose pattern The docs on IDisposable explain it quite well IIRC. EDIT changed destructor..
What NoSQL solutions are out there for .NET? [closed] http://stackoverflow.com/questions/1777103/what-nosql-solutions-are-out-there-for-net C# Redis Client is available at http www.servicestack.net docs redis client redis client The client provides a rich interface.. a real world applications is at http www.servicestack.net docs redis client designing nosql database See the source code of..
What does the ? mean after a type? [duplicate] http://stackoverflow.com/questions/2079334/what-does-the-mean-after-a-type other places to be honest for more details. See the docs for System.Nullable T for more information from the framework..
Validate a username and password against Active Directory? http://stackoverflow.com/questions/290548/validate-a-username-and-password-against-active-directory Security Principals in the .NET Framework 3.5 MSDN docs on System.DirectoryServices.AccountManagement share improve..
Can't get sql server compact 3.5 / 4 to work with ASP .NET MVC 2 http://stackoverflow.com/questions/3223359/cant-get-sql-server-compact-3-5-4-to-work-with-asp-net-mvc-2 direction here. I have searched stack overflow the help docs books online and googled. I really haven't found anything that..
Image.Save(..) throws a GDI+ exception because the memory stream is closed http://stackoverflow.com/questions/336387/image-save-throws-a-gdi-exception-because-the-memory-stream-is-closed it owns the stream and you shouldn't close it. As the docs for that constructor say You must keep the stream open for the.. open for the lifetime of the Bitmap. I can't find any docs promising to close the stream when you dispose the bitmap but..
Remove trailing zeros? http://stackoverflow.com/questions/4525854/remove-trailing-zeros had to explicitly set the precision specifier to 29 as the docs clearly state However if the number is a Decimal and the precision..
Regarding IE9 WebBrowser control http://stackoverflow.com/questions/4612255/regarding-ie9-webbrowser-control directives are displayed in IE7 Standards mode. The full docs http msdn.microsoft.com en us library ee330730 28VS.85 29.aspx#browser_emulation..
Icecast 2: protocol description, streaming to it using C# http://stackoverflow.com/questions/5215019/icecast-2-protocol-description-streaming-to-it-using-c-sharp the Icecast 2 streaming protocol I couldn't find those docs on the official site of Icecast. I don't want to extract the..
How do I restart my C# WinForm Application? http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-sharp-winform-application currently running process. According to the Process.Start docs If the process is already running no additional process resource..
ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids http://stackoverflow.com/questions/8914349/servicestack-net-redis-storing-related-objects-vs-related-object-ids documentation for this question either for general Redis docs or specific ServiceStack.Net docs or both is there actually.. either for general Redis docs or specific ServiceStack.Net docs or both is there actually a definitive source for documentation..
What's the difference between SortedList and SortedDictionary? http://stackoverflow.com/questions/935621/whats-the-difference-between-sortedlist-and-sorteddictionary reflects the implementation more closely. Look at the MSDN docs for each of them SortedList SortedDictionary for details of.. Here's a nice summary from the SortedDictionary docs The SortedDictionary TKey TValue generic class is a binary search..
when to use @ in c#? http://stackoverflow.com/questions/1057926/when-to-use-in-c easy to write for example a fully qualified file name @ c Docs Source a.txt rather than c Docs Source a.txt share improve..
Speed up insert mdb http://stackoverflow.com/questions/2248604/speed-up-insert-mdb NewTable FROM Text HDR YES FMT Delimited IMEX 2 DATABASE C Docs .Some.CSV You can use something similar with non standard delimiters..
Unable to upload large files to Google Docs http://stackoverflow.com/questions/2839228/unable-to-upload-large-files-to-google-docs to upload large files to Google Docs I am uploading documents on Google Docs as DocumentsService.. files to Google Docs I am uploading documents on Google Docs as DocumentsService myService new DocumentsService myService.setUserCredentials.. private full How can I upload large files to Google Docs I am using Google API ver 2. c# upload google docs share..
Sharing sessions across applications using the ASP.NET Session State Service http://stackoverflow.com/questions/2868316/sharing-sessions-across-applications-using-the-asp-net-session-state-service to be set up on a database server that both apps can see. Docs for doing this http msdn.microsoft.com en us library ms229862..
Crystal Report | Printing | Default Printer http://stackoverflow.com/questions/6362230/crystal-report-printing-default-printer Take a look at the ReportDocument.PrintToPrinter SAP Docs or MSDN Docs for how to specify the PrinterName and then Print.. look at the ReportDocument.PrintToPrinter SAP Docs or MSDN Docs for how to specify the PrinterName and then Print using the..
How to execute an .SQL script file using c# http://stackoverflow.com/questions/650098/how-to-execute-an-sql-script-file-using-c-sharp SURAJIT SQLEXPRESS FileInfo file new FileInfo @ E Project Docs MX462 PD MX756_ModMappings1.sql string script file.OpenText..
|