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

Partial Classes and Partial Methods
Tutorial notes and examples are provided on partial classes and partial methods. Topics include introduction of partial classes and partial methods; examples of partial classes and partial methods.
2022-10-01, ∼309🔥, 0💬

Archived Tutorials
This chapter contains some outdated tutorial notes and example codes from previous versions of this book.
2022-03-11, ∼308🔥, 1💬

Watching Asynchronous Operation Execution Status
A tutorial example is provided on how to query the 'Status' property to watch the execution status of an asynchronous operation. The tutorial example shows 5 asynchronous operations running in 5 child threads.
2022-10-01, ∼307🔥, 0💬

Data Type and Variables
This chapter provides tutorial examples and notes on data type, variable and arithmetic operation. Topics include 5 basic data types: Boolean, Integer, Real, Character and String; using variables to store data; using arithmetic operations to manipulate integral and real data.
2022-10-01, ∼286🔥, 0💬

Class Features
This chapter provides tutorial examples and notes on some interesting features supported in C# classes. Topics include 'const' and 'readonly' variables; method overloading; object user defined properties and operators.
2022-10-01, ∼286🔥, 0💬

MSBuild - Microsoft Build Engine
Tutorial notes and examples are provided on Microsoft Build Engine (MSBuild). Topics include quick introduction of MSBuild; a simple first MSBuild project file; using MSBuild with multiple source files.
2022-10-01, ∼282🔥, 0💬

IEEE 754 Standards - "float" and "double" - Test
This section provides a tutorial example on how to convert a 'float' number into the IEEE 754 binary expression format.
2022-10-01, ∼280🔥, 0💬

Introduction of C# (C Sharp)
This chapter provides a quick introduction of C# (C Sharp) language. Topics include C# history; installing .NET Framework 1.0 SDK; writing the first C# program to print 'Hello world!'.
2022-10-01, ∼278🔥, 0💬

Memory Usages of Processes
This chapter provides tutorial examples and notes on memory usages of processes. Topics include using System.Diagnostics.Process class to report memory usages; validating private and virtual memory usages using Task Manager and Performance console.
2022-10-01, ∼276🔥, 0💬

System.Diagnostics.FileVersionInfo Class
This chapter provides tutorials and notes on System.Diagnostics.FileVersion Infoclass provided by .NET Framework to retrieve version information on Portable Executable (PE) files, .exe and .dll files. Topics include introduction to FileVersionInfo; creating FileVersionInfo objects; printing out file...
2022-10-01, ∼275🔥, 0💬

What Is Partial Method?
A quick introduction is provided on 'partial' method, which declares the method definition in one partial class, and method signatures in other partial classes.
2022-10-01, ∼275🔥, 0💬

Arithmetic Operations
This section describes arithmetic operations: Multiplication, Division, Addition, and Subtraction.
2022-10-01, ∼273🔥, 0💬

Passing Parameters to Methods
This chapter provides tutorial examples and notes on passing parameters to methods. Topics include types of parameters: value parameters, reference parameters, output parameters, and parameter arrays.
2022-10-01, ∼271🔥, 0💬

Archived: Installing .NET Framework 1.0 SDK
This section provides a tutorial example on how to download and install Microsoft .NET Framework 1.0 SDK, which can be used as the programming environment for C# language.
2016-10-13, ∼265🔥, 1💬

Data Type Features
This chapter provides tutorial examples and notes on some data type features. Topics include 'decimal' simple type; simple types as aliases of 'struct' types; unified type system; jagged arrays.
2022-10-01, ∼259🔥, 0💬

Async Feature from C# 5
Tutorial notes and examples are provided on the Async feature introduced in C# 5. Topics include introduction of Async feature; Asynchronous operations from the HttpClient class; 'await' expression examples; 'async' function examples.
2022-10-01, ∼259🔥, 0💬

C# Compiler and Intermediate Language
This chapter provides tutorial examples and notes on C# compiler and Intermediate Language. Topics include compiling C# source code with C# compiler; executing IL (Intermediate Language) bytecode; disassembling IL bytecode back to IL source code.
2022-10-01, ∼258🔥, 0💬

Multithreading in C#
This chapter provides tutorial examples and notes on multithreading in C# programs. Topics include multithreading introduction; .NET System.Threading.Thread class; multiple threads on multi-CPU systems.
2022-10-01, ∼258🔥, 0💬

What Is WPF?
A quick introduction is provided on WPF (Windows Presentation Foundation), which is a graphical subsystem for rendering user interfaces in Windows-based applications.
2022-10-01, ∼256🔥, 0💬

ShowFileVersionInfo.cs - Print File Version Information
This section provides a tutorial example on how to use the FileVersionInfo class to print out all properties included in the version information of an executable file.
2022-10-01, ∼254🔥, 0💬

Arrays and Loop Statements
This chapter provides tutorial examples and notes on arrays and loop statements. Topics include creating and using arrays; 'for' loop statements and examples; 'while' loop statements.
2022-10-01, ∼253🔥, 0💬

Footprints of Private and Shared Memories
This section provides a tutorial example on how to estimate footprints of private memory and shared memory of C# applications.
2022-10-01, ∼253🔥, 0💬

System.IO.FileInfo Class
This chapter provides tutorials and notes on System.IO.FileInfo class provided by .NET Framework. Topics include introduction to FileInfo; creating FileInfo objects; retrieving file information; managing files.
2022-10-01, ∼253🔥, 0💬

C# Program Structure
This section describes C# program structure and basic rules. A C# program is user defined class with the 'public static void Main()' method as the execution entry point.
2022-10-01, ∼251🔥, 0💬

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