¡@

Home 

c# Programming Glossary: magazine

What is a good tutorial/howto on .net / c# socket programming

http://stackoverflow.com/questions/104617/what-is-a-good-tutorial-howto-on-net-c-sharp-socket-programming

speech recognition from audio file instead of microphone

http://stackoverflow.com/questions/1055347/speech-recognition-from-audio-file-instead-of-microphone

articles for general info http msdn.microsoft.com en us magazine cc163663.aspx http en.wikipedia.org wiki Speech_Application_Programming_Interface..

System.Timers.Timer vs System.Threading.Timer

http://stackoverflow.com/questions/1416803/system-timers-timer-vs-system-threading-timer

comprehensive explanation http msdn.microsoft.com en us magazine cc164015.aspx The specific difference appears to be that System.Timers.Timer..

What's the best way to benchmark programs in Windows?

http://stackoverflow.com/questions/145103/whats-the-best-way-to-benchmark-programs-in-windows

can be downloaded from http msdn.microsoft.com en us magazine cc500596.aspx . It is a test project written by Vance Morrison..

Using lock statement within a loop in C#

http://stackoverflow.com/questions/2113261/using-lock-statement-within-a-loop-in-c-sharp

v2 memory model read this http msdn.microsoft.com en us magazine cc163715.aspx I said probably because as Joe Duffy wisely says..

What technique can protect a secret from a fully trusted user?

http://stackoverflow.com/questions/2150912/what-technique-can-protect-a-secret-from-a-fully-trusted-user

of threat modeling see http msdn.microsoft.com en us magazine cc163519.aspx http www.owasp.org index.php Threat_Risk_Modeling..

When passing a managed byte[] array through PInvoke to be filled in by Win32, does it need to be pinned?

http://stackoverflow.com/questions/2218444/when-passing-a-managed-byte-array-through-pinvoke-to-be-filled-in-by-win32-do

How do I use XML as a DataSource for a DataGridView in a WinForms project?

http://stackoverflow.com/questions/265604/how-do-i-use-xml-as-a-datasource-for-a-datagridview-in-a-winforms-project

way recommended by MSDN here http msdn.microsoft.com en us magazine cc163669.aspx is to load it into a data set. Q Can you tell..

Using AES encryption in C#

http://stackoverflow.com/questions/273452/using-aes-encryption-in-c-sharp

includes 128 bit keysizes http msdn.microsoft.com en us magazine cc164055.aspx There is a code sample available for download.. to browse online here http msdn.microsoft.com en us magazine cc164846.aspx If you just want to use the built in crypto provider..

How to handle AccessViolationException

http://stackoverflow.com/questions/3469368/how-to-handle-accessviolationexception

in the .NET 4.0 Framework http msdn.microsoft.com en us magazine dd419661.aspx#id0070035 But there is hope. There are a few ways.. attribute. See http msdn.microsoft.com en us magazine dd419661.aspx#id0070035 for details. For more reference http..

Voice/Speech to text

http://stackoverflow.com/questions/4677471/voice-speech-to-text

then you can use SAPI http msdn.microsoft.com en us magazine cc163663.aspx On server side you can use Microsoft Unified Communication..

Is C# really slower than say C++?

http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c

Bonus Topic Benchmarks Since quite a few blogs web sites magazine articles etc. claim to provide objective evidence in one direction..

good Speech recognition API

http://stackoverflow.com/questions/5467827/good-speech-recognition-api

published a few years ago at http msdn.microsoft.com en us magazine cc163663.aspx . It is probably the best introductory article..

rss parser in .net

http://stackoverflow.com/questions/684507/rss-parser-in-net

http msdn.microsoft.com en us magazine cc135976.aspx .net has a class to parse ATOM and RSS feeds...

Why must we define both == and != in C#?

http://stackoverflow.com/questions/6916884/why-must-we-define-both-and-in-c

C 3 When C# was introduced there was an article in MSDN magazine that wrote talking about C# Many developers wish there was a..

Caching in WCF

http://stackoverflow.com/questions/922116/caching-in-wcf

channel can be found at http msdn.microsoft.com en us magazine cc163302.aspx . This is how you do the plumbing for WCF caching..

Different between Task (System.Threading.Task) and Thread

http://stackoverflow.com/questions/9493421/different-between-task-system-threading-task-and-thread

pieces of work together first go to the store then buy a magazine . Tasks are scheduled on a pool of threads. The specific number..

How can I securely embed a static string (key) in C#?

http://stackoverflow.com/questions/9511989/how-can-i-securely-embed-a-static-string-key-in-c

question Have a look at http msdn.microsoft.com en us magazine cc164054.aspx it is a good read. Your question is under the..

What is a good tutorial/howto on .net / c# socket programming

http://stackoverflow.com/questions/104617/what-is-a-good-tutorial-howto-on-net-c-sharp-socket-programming

share improve this question The August 2005 MSDN Magazine had an article about System.Net.Sockets and WinSock http msdn.microsoft.com..

How should I handle my Entity/Domain Objects using IoC/Dependency Injection?

http://stackoverflow.com/questions/1405665/how-should-i-handle-my-entity-domain-objects-using-ioc-dependency-injection

ignorance . Jeremy Miller has an article in MSDN Magazine that somewhat touches upon the subject . share improve this..

Read Introduction in C# - how to protect against it?

http://stackoverflow.com/questions/14799876/read-introduction-in-c-sharp-how-to-protect-against-it

in C# how to protect against it An article in MSDN Magazine discusses the notion of Read Introduction and gives a code sample..

Will a future version of .NET support tuples in C#?

http://stackoverflow.com/questions/152019/will-a-future-version-of-net-support-tuples-in-c

this question I've just read this article from the MSDN Magazine Building Tuple Here are excerpts The upcoming 4.0 release of..

Random array using LINQ and C#

http://stackoverflow.com/questions/254844/random-array-using-linq-and-c-sharp

array using LINQ and C# I was reading an article on MSDN Magazine about using the Enumerable class in LINQ to generate a random..

“this” in function parameter

http://stackoverflow.com/questions/3045242/this-in-function-parameter

few links MSDN Extension Methods C# Programming Guide MSDN Magazine Basic Instincts Extension Methods Wikipedia Extension Method..

Tips / techniques for high-performance C# server sockets

http://stackoverflow.com/questions/319732/tips-techniques-for-high-performance-c-sharp-server-sockets

wrong those would be great as well. Note I have the MSDN Magazine article Winsock Get Closer to the Wire with High Performance..

What is the .NET standard for remote method invocation?

http://stackoverflow.com/questions/3560107/what-is-the-net-standard-for-remote-method-invocation

library articles on WCF WCF Developer's Primer from CODE Magazine A quick summary primer of what's covered in the other two share..

Is using Thread.Abort() and handling ThreadAbortException in .NET safe practice?

http://stackoverflow.com/questions/6382997/is-using-thread-abort-and-handling-threadabortexception-in-net-safe-practice

the limitations on what you can do in these cases. MSDN Magazine had an introductory article introduction to the subject not..