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

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, 215🔥, 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, 213🔥, 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, 213🔥, 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, 210🔥, 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, 210🔥, 0💬

"switch" Statements - Example
This section provides a tutorial example on how to use 'switch' statements to print business hours based on today's date.
2022-10-01, 208🔥, 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, 208🔥, 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, 206🔥, 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, 204🔥, 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, 202🔥, 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, 197🔥, 0💬

What Is FileInfo?
This section describes what is FileInfo - a .NET Framework class in the System.IO namespace. FileInfo class can be used to represent files in a file system to allow you to retrieve file storage information, retrieve and set other file attributes.
2022-10-01, 197🔥, 0💬

Types of Method Parameters
This section describes types of method parameters: value parameter, reference parameter, and output parameter.
2022-10-01, 194🔥, 0💬

Execution Environment Class
This chapter provides tutorial examples and notes on the execution environment class, System.Environment. Topics include descriptions on properties and methods of System.Environment; getting OS (Operating System) information; getting CLR (Common Language Runtime) information.
2022-10-01, 193🔥, 0💬

What Is XAML?
A quick introduction is provided on XAML (eXtensible Application Markup Language) which is an XML-based markup language developed by Microsoft to separate UI look and feel design from implementation of application behaviors.
2022-10-01, 193🔥, 0💬

Getting CLR (Common Language Runtime) Information
This section provides a tutorial example on how to use execution environment class, System.Environment, to retrieve information about the CLR (Common Language Runtime).
2022-10-01, 190🔥, 0💬

What Is Async Feature?
A quick introduction is provided on the Async feature introduced in C# 5. Async feature is designed to help asynchronous programming to make applications more responsive in activities that are potentially slow or delayed.
2022-10-01, 190🔥, 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, 186🔥, 0💬

Performance of Floating-Point Data Types
This section provides a tutorial example on how to compare performance of floating-point data types: 'float', 'double', and 'decimal'
2022-10-01, 184🔥, 0💬

System.Environment - Execution Environment Class
This section describes the execution environment class, System.Environment, which allows you to retrieve information about and manipulate the current environment and platform.
2022-10-01, 183🔥, 0💬

What Is C#?
This section describes what is a C# (C Sharp) - A modern, object-oriented language that enables programmers to quickly build a wide range of applications for the new Microsoft .NET platform.
2022-10-01, 182🔥, 0💬

Compiling and Running a Project
This section provides a tutorial example on how to compile and run a Visual C# 2010 project. Visual Studio 2010 generates 64-bit and 32-bit executable files.
2022-10-01, 181🔥, 0💬

Assembling Intermediate Language Source Code
This section provides a tutorial example on how to use the .NET Intermediate Language assembler to assemble IL source code into bytecode and stored in a PE file.
2022-10-01, 181🔥, 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, 180🔥, 0💬

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