¡@

Home 

c# Programming Glossary: routines

Why does adding local variables make .NET code slower

http://stackoverflow.com/questions/10369421/why-does-adding-local-variables-make-net-code-slower

that had problems like this scattered throughout its routines. You'd work through the hotspots but have no hint of the broader..

Why does closing a console that was started with AllocConsole cause my whole application to exit? Can I change this behavior?

http://stackoverflow.com/questions/11959643/why-does-closing-a-console-that-was-started-with-allocconsole-cause-my-whole-app

reason is that some or all of the internal console cleanup routines may have been called before executing the process signal handler...

Is C# code faster than Visual Basic.NET code?

http://stackoverflow.com/questions/1223660/is-c-sharp-code-faster-than-visual-basic-net-code

come out slightly differently in the CLR. So for certain routines some may be slightly better like 0.0000001 faster in C# and..

Formatting doubles for output in C#

http://stackoverflow.com/questions/1421520/formatting-doubles-for-output-in-c-sharp

that the Visual Studio debugger has its own format display routines that directly access the internal binary number hence the discrepancies..

Is a program F# any more efficient (execution-wise) than C#? [closed]

http://stackoverflow.com/questions/142985/is-a-program-f-any-more-efficient-execution-wise-than-c

than the equivalent C# . In fact some of our numerical routines are consistently several times faster than vendor tuned Fortran..

Alternatives to System.Drawing for use with ASP.NET?

http://stackoverflow.com/questions/1528525/alternatives-to-system-drawing-for-use-with-asp-net

implements many powerful image handling and transformation routines that are not found in GDI or not implemented under mono and..

Does anyone have benchmarks (code & results) comparing performance of Android apps written in Xamarin C# and Java?

http://stackoverflow.com/questions/17134522/does-anyone-have-benchmarks-code-results-comparing-performance-of-android-ap

regex class on Android so had to write my own specialized routines searching for paragraphs breaks or html tags. My initial tests..

Process.Start with different credentials with UAC on

http://stackoverflow.com/questions/2313553/process-start-with-different-credentials-with-uac-on

FROM Win32_ComputerSystem #endregion #region Win32 API routines StructLayout LayoutKind.Sequential struct SECURITY_ATTRIBUTES..

What is the point of Convert.ToDateTime(bool)?

http://stackoverflow.com/questions/2689572/what-is-the-point-of-convert-todatetimebool

Convert.ToDateTime bool I was doing some type conversion routines last night for a system I am working on. One of the conversions..

binary file to string

http://stackoverflow.com/questions/2980182/binary-file-to-string

not on the right path. What you need is one of the BaseXX routines that encodes binary data to printable characters typically for..

How to pre-load all deployed assemblies for an AppDomain

http://stackoverflow.com/questions/3021613/how-to-pre-load-all-deployed-assemblies-for-an-appdomain

After all that's practically what .Net's reference loading routines do Equally this approach works nicely with custom assembly probing..

Need a way to sort a 100 GB log file by date [closed]

http://stackoverflow.com/questions/3795029/need-a-way-to-sort-a-100-gb-log-file-by-date

a formatted file that easily handled by your reporting routines. That way you'll save time later when potentially running your..

GetMethod for generic method [duplicate]

http://stackoverflow.com/questions/4035719/getmethod-for-generic-method

using Linq but I'm not a huge fan of Linq in low level routines like this and also not unless the Linq is about as easy to follow..

SharePoint for a C# ASP.NET Developer [closed]

http://stackoverflow.com/questions/535255/sharepoint-for-a-c-sharp-asp-net-developer

spend a LOT of time grokking how to get the deployment routines to work for you and you will spend a LOT of time with issues..

What is an .axd file?

http://stackoverflow.com/questions/5879824/what-is-an-axd-file

contains all of the clientside javascript routines for Ajax. Just because you include a scriptmanager that loads..

Why are public fields faster than properties?

http://stackoverflow.com/questions/632831/why-are-public-fields-faster-than-properties

v2 of your class and add logic into the property get set routines as needed without changing your interface to your end users...

Unblock File from within .net 4 c#

http://stackoverflow.com/questions/6374673/unblock-file-from-within-net-4-c-sharp

c theapp.exe Zone.Identifier you need to use the native IO routines to manipulate them here is a managed wrapper . share improve..

How to parse a text file in C# and be io bound?

http://stackoverflow.com/questions/7153315/how-to-parse-a-text-file-in-c-sharp-and-be-io-bound

culture aware. Due to this and the fact that these parse routines deal with many formats they are somewhat expensive at the magnitude..

C#: is calling an event handler explicitly really “a good thing to do”?

http://stackoverflow.com/questions/984270/c-is-calling-an-event-handler-explicitly-really-a-good-thing-to-do

the workload of functions or even separating out complex routines into separate functions Is there even an accepted style I feel..