< 1 2 3 4 5 6 > >>   ∑:125  Sort:Date

Threads to Run Instance Methods
This section provides a tutorial example on how to use a thread to run instance method.
2022-10-01, ∼418🔥, 0💬

First MSBuild Project File - Hello.proj
A tutorial example is provided to a very simple MSBuild project file, Hello.proj, to compile a C# source file, Hello.cs.
2022-10-01, ∼415🔥, 0💬

Compiling and Running C# Programs
This section describes the process of compiling and executing a C# program. Compilation means converting C# source into Intermediate Language bytecode. Execution means converting bytecode to native code and running it.
2022-10-01, ∼401🔥, 0💬

Disassembling Intermediate Language Bytecode
This section provides a tutorial example on how to use the .NET Intermediate Language disassembler to disassemble IL bytecode stored in a PE file back to IL source code.
2022-10-01, ∼395🔥, 0💬

References
List of reference materials used in this book.
2017-09-01, ∼386🔥, 1💬

💬 2017-09-01 Irena: Hi! I just want to share with you all another online interactive programming course to learn c#. Course is designed for complete...

Archived: Installing .NET Framework 2.0 SDK
This section provides a tutorial example on how to download and install Microsoft .NET Framework 2.0 SDK, which can be used as the programming environment for C# language.
2022-10-01, ∼383🔥, 0💬

What Is FileVersionInfo?
This section describes what is FileVersionInfo - a .NET Framework class in the System.Diagnostics namespace. FileVersionInfo class can be used to provide version number and other version information for a physical file on disk.
2022-10-01, ∼382🔥, 0💬

System.Windows.Window Class
A quick introduction is provided on the System.Windows.Window class, which represents a window or a dialog box on the screen.
2022-10-01, ∼378🔥, 0💬

Using MSBuild with Multiple Source Files
A tutorial example is provided on how to specify the 'Csc' command patch name and output file name using properties.
2022-10-01, ∼374🔥, 0💬

Memory Report from Windows Task Manager
This section provides a tutorial example on how to use Windows Task Manager to verify memory usage numbers reported by the System.Diagnostics.Process class.
2022-10-01, ∼362🔥, 0💬

The "decimal" Data Type
This section describes the 'decimal' data type for floating-point values. 'decimal' uses a 128-bit storage size.
2020-01-21, ∼361🔥, 1💬

💬 2020-01-21 a: comment

"await" Expression and Child Thread
A tutorial example is provided on how to use the 'await' expression on an awaitable task to launch a child thread to wait for the task to complete.
2022-10-01, ∼353🔥, 0💬

Creating a Visual C# 2010 Project
This section provides a tutorial example on how to create a Visual C# 2010 project for a console application.
2022-10-01, ∼349🔥, 0💬

Multi-Thread Programs on Multi-CPU Systems
This section provides a tutorial example to see how multi-thread programs behave on multi-CPU systems and how to change processor affinity to control which processors to use for each application.
2022-10-01, ∼348🔥, 0💬

Binary Representation of "decimal"
This section describes binary representations of 'decimal' floating-point values according to the Microsoft .NET Framework reference manual.
2022-10-01, ∼345🔥, 0💬

.NET Intermediate Language Disassembler
This section provides a tutorial example on how to use the .NET Intermediate Language disassembler to open and disassemble a CLR based Portable Executable files.
2022-10-01, ∼341🔥, 0💬

What Is MSBuild?
A quick introduction is provided on MSBuild, the Microsoft Build Engine, which is a platform for building .NET applications using a project file in XML format.
2022-10-01, ∼339🔥, 0💬

"async" Function Example
A tutorial example is provided on how to write an 'async' function with Task&lt;T&gt; return type. An 'async' function needs an 'await' expression to trigger a child thread to split executions.
2018-12-08, ∼335🔥, 3💬

💬 2018-12-08 Herong: Alan, Thanks for sharing the issue and the solution. It's definitely helpful.

💬 2018-12-06 Alan: Found the reason: https://blog.stephencleary.com/2012/ 07/dont-block-on-async-code.html

💬 2018-12-06 Alan: This code works. Then I insert this into a WindowsForms app, activate on a button click, and it just hangs. Why?

Virtual Memory Upper Limit
This section provides a tutorial example on how to test virtual memory upper limit, which is close to 2 GB on 32-bit Windows systems.
2022-10-01, ∼334🔥, 0💬

About This Book
This section provides some detailed information about this book - __title__.
2022-10-01, ∼330🔥, 0💬

Displaying Version Information using Windows Explorer
This section provides a tutorial example on how to display version information properties of executable files, .exe and .dll files, using Windows Explorer.
2022-12-10, ∼329🔥, 1💬

"if" Statements - Example
This section provides a tutorial example on how to use 'if' statements to calculate income taxes.
2022-10-01, ∼323🔥, 0💬

Method Overloading
This section describes what is method overloading - multiple methods in the same class with the same name but different method signatures.
2022-10-01, ∼319🔥, 0💬

WPF - Windows Presentation Foundation
Tutorial notes and examples are provided on WPF (Windows Presentation Foundation). Topics include introduction of WPF; System.Windows.Application and System.Windows.Window classes; System.Windows.Controls.* classes; Button click example; MSBuild project file for WPF applications..
2022-10-01, ∼315🔥, 0💬

< 1 2 3 4 5 6 > >>   ∑:125  Sort:Date