c# Programming Glossary: system.collections.generic
How to execute a stored procedure within C# program http://stackoverflow.com/questions/1260952/how-to-execute-a-stored-procedure-within-c-sharp-program @i EXEC @command SET @i @i 1 END EDITED using System using System.Collections.Generic using System.Text using System.Data using System.Data.SqlClient..
Win32 API function to programmatically enable/disable device http://stackoverflow.com/questions/1438371/win32-api-function-to-programmatically-enable-disable-device adapted from here . using System using System.Text using System.Collections.Generic using DisableDevice using System.Runtime.InteropServices using..
\d is less efficient than [0-9] http://stackoverflow.com/questions/16621738/d-is-less-efficient-than-0-9 shorthand for 0 9 Here is the test code using System using System.Collections.Generic using System.Linq using System.Text using System.Diagnostics..
XML Serialization and Inherited Types http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types for the AbstractXmlSerializer is this using System using System.Collections.Generic using System.Text using System.Xml.Serialization namespace Utility.Xml..
High Quality Image Scaling C# http://stackoverflow.com/questions/249587/high-quality-image-scaling-c-sharp width and the height as the arguments. using System using System.Collections.Generic using System.Drawing using System.Drawing.Imaging namespace..
Getting key of value of a generic Dictionary? http://stackoverflow.com/questions/255341/getting-key-of-value-of-a-generic-dictionary the multiple bidirectional version using System using System.Collections.Generic using System.Text class BiDictionary TFirst TSecond IDictionary..
Randomize a List<T> in C# http://stackoverflow.com/questions/273313/randomize-a-listt-in-c-sharp from @weston here on SO. Program.cs using System using System.Collections.Generic using System.Threading namespace SimpleLottery class Program..
byte[] array pattern search http://stackoverflow.com/questions/283456/byte-array-pattern-search strings copying arrays or unsafe code using System using System.Collections.Generic static class ByteArrayRocks static readonly int Empty new int..
Deserialize JSON into C# dynamic object? http://stackoverflow.com/questions/3142495/deserialize-json-into-c-sharp-dynamic-object your project using System using System.Collections using System.Collections.Generic using System.Collections.ObjectModel using System.Dynamic using..
Parsing JSON using Json.net http://stackoverflow.com/questions/401756/parsing-json-using-json-net from System.Web.Extensions.dll .NET 3.5 SP1 using System.Collections.Generic using System.Web.Script.Serialization public class NameTypePair..
Dynamic LINQ OrderBy on IEnumerable<T> http://stackoverflow.com/questions/41244/dynamic-linq-orderby-on-ienumerablet using System using System.Collections using System.Collections.Generic using System.Dynamic using System.Linq using System.Runtime.CompilerServices..
How to read a text file reversely with iterator in C# http://stackoverflow.com/questions/452902/how-to-read-a-text-file-reversely-with-iterator-in-c-sharp as you'll see using System using System.Collections using System.Collections.Generic using System.IO using System.Text namespace MiscUtil.IO summary..
Convert generic List/Enumerable to DataTable? http://stackoverflow.com/questions/564366/convert-generic-list-enumerable-to-datatable you'll improve much on that... code using System using System.Collections.Generic using System.ComponentModel using System.Data using System.Diagnostics..
Developing Internet Explorer Extensions? http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions Create the following files IEAddon.cs using System using System.Collections.Generic using System.Runtime.InteropServices using System.Windows.Forms..
How do I convert Word files to PDF programmatically? http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically using Microsoft.Office.Interop.Word using System using System.Collections.Generic using System.IO using System.Linq using System.Text ... Create..
How to execute an .SQL script file using c# http://stackoverflow.com/questions/650098/how-to-execute-an-sql-script-file-using-c-sharp share improve this question using System using System.Collections.Generic using System.Linq using System.Web using System.Web.UI using..
.NET XML serialization gotchas? [closed] http://stackoverflow.com/questions/67959/net-xml-serialization-gotchas archive 2006 05 03 444961.aspx using System using System.Collections.Generic using System.Text using System.Xml.Serialization XmlRoot dictionary..
Sending email through Gmail SMTP server with C# http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c-sharp just like the samples you referred to using System using System.Collections.Generic using System.Linq using System.Text using System.Net.Mail using..
Is it possible to dynamically compile and execute C# code fragments? http://stackoverflow.com/questions/826398/is-it-possible-to-dynamically-compile-and-execute-c-sharp-code-fragments which uses some LINQ too just for fun. using System using System.Collections.Generic using System.Linq using Microsoft.CSharp using System.CodeDom.Compiler..
Using C#, how does one figure out what process locked a file? http://stackoverflow.com/questions/860656/using-c-how-does-one-figure-out-what-process-locked-a-file won't stop your process from exiting. using System using System.Collections.Generic using System.Runtime.InteropServices using System.Diagnostics..
|