C++ Video Tutorials – 115 Hours

Here is a collection of over 115 hours of premium video tutorials on C++ by Pluralsight. In order to view the videos, you need to become a member of Pluralsight. By Bjarne Stroustrup’s homepage, GFDL, https://commons.wikimedia.org/w/index.php?curid=188666 Background: C++ C++ is a general-purpose programming language. It has imperative, object-oriented and generic programming features. It also provides facilities for low-level memory... [Read More...]

C# Video Tutorials – 139 Hours

Here is a collection of over 139 hours of premium video tutorials on C Sharp by Pluralsight. In order to view the videos, you need to become a member of Pluralsight. By Tchanders – Own work, CC0, https://commons.wikimedia.org/w/index.php?curid=28382531 Background: C Sharp C# (pronounced as see sharp) is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based),... [Read More...]

Price Comparison of .NET Code Generators

Here is a  Price Comparison of .NET Code Generators. In order to compare these .net code generators, I installed all of the windows based applications on my machine to see how each one worked. In my opinion, the “hands-down” winner is Agile Platform, but it is expensive. There is a free trial version that is a must-see if you want to know what the best looks like. It seems like all of the .net code generators I reviewed are lacking... [Read More...]

ConvertToUInt64 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt64 | Source Code

ConvertToUInt64 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt64 | Source Code Summary: – Illustrates using ConvertToUInt64 with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts numbers into ULong data type – ULong data type is a 64-bit (8-byte) unsigned integer that can hold values from 0 to 18,446,744,073,709,551,615 (unsigned). Rounds fractions... [Read More...]

ConvertToUInt32 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt32 | Source Code

ConvertToUInt32 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt32 | Source Code Summary: – Illustrates using ConvertToUInt32 with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts numbers into UInteger data type – UInteger data type is a 32-bit (4-byte) unsigned integer that can hold values from 0 to about 4 billion (4,294,967,295). Rounds fractions... [Read More...]

ConvertToUInt16 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt16 | Source Code

ConvertToUInt16 Example Syntax C-Sharp ASP.NET | C# ConvertToUInt16 | Source Code Summary: – Illustrates using ConvertToUInt16 with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts numbers into UShort data type – UShort data type is a 16-bit (2-byte) unsigned integer that can hold values from 0 to 65,535 (unsigned). Rounds fractions to whole numbers Syntax:... [Read More...]

ConvertToString Example Syntax C-Sharp ASP.NET | C# ConvertToString | Source Code

ConvertToString Example Syntax C-Sharp ASP.NET | C# ConvertToString | Source Code Summary: – Illustrates using ConvertToString with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts boolean, date, and numeric data types into String data type Syntax: Convert.ToString(expression) Parameters Description expression boolean, date, and numeric data types Result... [Read More...]

ConvertToSingle Example Syntax C-Sharp ASP.NET | C# ConvertToSingle | Source Code

ConvertToSingle Example Syntax C-Sharp ASP.NET | C# ConvertToSingle | Source Code Summary: – Illustrates using ConvertToSingle with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts positive and negative numbers into Single data type Syntax: Convert.ToSingle(expression) Parameters Description expression -3.402823E+38 through -1.401298E-45 for negative... [Read More...]

ConvertToSByte Example Syntax C-Sharp ASP.NET | C# ConvertToSByte | Source Code

ConvertToSByte Example Syntax C-Sharp ASP.NET | C# ConvertToSByte | Source Code Summary: – Illustrates using ConvertToSByte with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts positive and negative numbers into SByte data type Syntax: Convert.ToSByte(expression) Parameters Description expression -128 through 127; fractional parts are rounded. Result... [Read More...]

ConvertToObject Example Syntax C-Sharp ASP.NET | C# ConvertToObject | Source Code

ConvertToObject Example Syntax C-Sharp ASP.NET | C# ConvertToObject | Source Code Summary: – Illustrates using ConvertToObject with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts any valid expression into Object data type Syntax: (object)(expression) Parameters Description expression any valid expression Result Data Type Description object returns... [Read More...]

ConvertToInt64 Example Syntax C-Sharp ASP.NET | C# ConvertToInt64 | Source Code

ConvertToInt64 Example Syntax C-Sharp ASP.NET | C# ConvertToInt64 | Source Code Summary: – Illustrates using ConvertToInt64 with Source Code Syntax Example in C-Sharp ASP.NET. View Other C-Sharp ASP.NET Type Conversion Function Examples Purpose: Converts positive and negative numbers into Long data type Syntax: Convert.ToInt64(expression) Parameters Description expression -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807;... [Read More...]

Next Page »