¡@

Home 

c# Programming Glossary: system.text

How do I access ARP-protocol information through .NET?

http://stackoverflow.com/questions/1148778/how-do-i-access-arp-protocol-information-through-net

using System.Net using System.Net.NetworkInformation using System.Text namespace Examples.System.Net.NetworkInformation.PingTest public..

Parse JSON in C#

http://stackoverflow.com/questions/1212344/parse-json-in-c-sharp

System.Runtime.Serialization.Json using System.IO using System.Text public partial class _Default System.Web.UI.Page protected void..

How to execute a stored procedure within C# program

http://stackoverflow.com/questions/1260952/how-to-execute-a-stored-procedure-within-c-sharp-program

EDITED using System using System.Collections.Generic using System.Text using System.Data using System.Data.SqlClient namespace AutomationApp..

How do you retrieve a list of logged-in/connected users in .NET?

http://stackoverflow.com/questions/132620/how-do-you-retrieve-a-list-of-logged-in-connected-users-in-net

issue using System using System.Collections.Generic using System.Text using System.Runtime.InteropServices namespace EnumerateRDUsers..

Detect Antivirus on Windows using C#

http://stackoverflow.com/questions/1331887/detect-antivirus-on-windows-using-c-sharp

WMI class. Look at this sample code using System using System.Text using System.Management namespace ConsoleApplication1 class..

Win32 API function to programmatically enable/disable device

http://stackoverflow.com/questions/1438371/win32-api-function-to-programmatically-enable-disable-device

the library itself adapted from here . using System using System.Text using System.Collections.Generic using DisableDevice using System.Runtime.InteropServices..

Program to find prime numbers

http://stackoverflow.com/questions/1510124/program-to-find-prime-numbers

using System.Collections.Generic using System.Linq using System.Text namespace ConsoleApplication16 class Program void prime_num..

\d is less efficient than [0-9]

http://stackoverflow.com/questions/16621738/d-is-less-efficient-than-0-9

using System.Collections.Generic using System.Linq using System.Text using System.Diagnostics using System.Text.RegularExpressions.. using System.Text using System.Diagnostics using System.Text.RegularExpressions namespace SO_RegexPerformance class Program..

XML Serialization and Inherited Types

http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types

this using System using System.Collections.Generic using System.Text using System.Xml.Serialization namespace Utility.Xml public..

Getting key of value of a generic Dictionary?

http://stackoverflow.com/questions/255341/getting-key-of-value-of-a-generic-dictionary

using System using System.Collections.Generic using System.Text class BiDictionary TFirst TSecond IDictionary TFirst IList TSecond..

Deserialize JSON into C# dynamic object?

http://stackoverflow.com/questions/3142495/deserialize-json-into-c-sharp-dynamic-object

using System.Dynamic using System.Linq using System.Text using System.Web.Script.Serialization public sealed class DynamicJsonConverter..

Performance Tests of Serializations used by WCF Bindings

http://stackoverflow.com/questions/3790728/performance-tests-of-serializations-used-by-wcf-bindings

using System.Runtime.Serialization.Formatters.Binary using System.Text using System.Web.Script.Serialization using System.Xml.Serialization..

multimap in .NET

http://stackoverflow.com/questions/380595/multimap-in-net

using System.Collections.Generic using System.Linq using System.Text using SD.Tools.Algorithmia.UtilityClasses namespace SD.Tools.Algorithmia.GeneralDataStructures..

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

using System.Collections.Generic using System.IO using System.Text namespace MiscUtil.IO summary Takes an encoding defaulting to..

How do I convert Word files to PDF programmatically?

http://stackoverflow.com/questions/607669/how-do-i-convert-word-files-to-pdf-programmatically

using System.IO using System.Linq using System.Text ... Create a new Microsoft Word application object Microsoft.Office.Interop.Word.Application..

.NET XML serialization gotchas? [closed]

http://stackoverflow.com/questions/67959/net-xml-serialization-gotchas

using System using System.Collections.Generic using System.Text using System.Xml.Serialization XmlRoot dictionary public class.. includes BOM XmlTextWriter wr new XmlTextWriter stream new System.Text.Encoding.UTF8 GOOD XmlTextWriter wr new XmlTextWriter stream.. GOOD XmlTextWriter wr new XmlTextWriter stream new System.Text.UTF8Encoding false You can explicitly pass false to indicate..

how can i get text formatting with iTextSharp

http://stackoverflow.com/questions/6882098/how-can-i-get-text-formatting-with-itextsharp

Code using System using System.Collections.Generic using System.Text using System.Windows.Forms using iTextSharp.text.pdf.parser..

Sending email through Gmail SMTP server with C#

http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c-sharp

using System.Collections.Generic using System.Linq using System.Text using System.Net.Mail using System.Net namespace ConsoleApplication2..

Writing large number of records (bulk insert) to Access in .NET/C#

http://stackoverflow.com/questions/7070011/writing-large-number-of-records-bulk-insert-to-access-in-net-c

using System.Collections.Generic using System.Linq using System.Text using ACCESS Microsoft.Office.Interop.Access USED ONLY FOR THE..

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

using System.Diagnostics using System.Text using System.Threading namespace FileLockInfo public class Win32Processes..