How to strip all HTML tags and entities and get clear text?
I was encouraged to write this Tip/Trick because of so many questions received for this issue. Suppose you’re having a…
All technologies, only pure source code
.NET (dotnet) is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.
So, there are various implementations of .NET (dotnet). Each implementation allows .NET code to execute in different places—Linux, macOS, Windows, iOS, Android, and many more. This framework has two main versions:
Then, Xamarin/Mono is a .NET (dotnet) implementation for running apps on all the major mobile operating systems, including iOS and Android.
The .NET Standard is a formal specification of the APIs that are common across .NET implementations. This allows the same code and libraries to run on different implementations.
Therefore, the two major components of .NET (dotnet) Framework are the Common Language Runtime and the .NET Framework Class Library.
Summarize, .NET (dotnet) applications are written in the C#, F#, or Visual Basic programming language. Code is compiled into a language-agnostic Common Intermediate Language (CIL). Compiled code is stored in assemblies—files with a .dll or .exe file extension.
At the end, when an app runs, the CLR takes the assembly and uses a just-in-time compiler (JIT) to turn it into machine code that can execute on the specific architecture of the computer it is running on.
I was encouraged to write this Tip/Trick because of so many questions received for this issue. Suppose you’re having a…
What’s that? I’ll let the code do the speaking. @{ Func<dynamic, object> b = @<strong>@item</strong>; } <span>This sentence is @b(“In…
Whilst working on a side project I started to notice I was using a lot of the same HTML to…
If the HTML file is in Solution Explorer, then right-click and select “Open With”. Otherwise open it with Open File…
the data protection operation was unsuccessful. this may have been caused by not having the user profile loaded for the…
Open the Package Manager Console and use the Update-Package cmd-let to update all packages. If this doesn’t work, you have…
In SQL Server data is stored using two physical files: (.mdf) extension which contains the data. (.ldf) extension which contains…
Run it from VS (with or without debugging). This will actually install unpackaged version of your app, so you will…
The progress of these applications with a simple incremental percentage display. I’d create a generic method which would display an ASCII progress bar
On GitHub Microsoft have published a lot of examples for Universal Apps: the link is https://github.com/Microsoft/Windows-universal-samples This repo contains the…
Windows 10 is the main discussion topic in the online development communities. This new operating system that is currently in…
Razor minimizes the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding…
If it takes awhile for the server to process the postback (e.g. complex rules or badly written code ), the…
Have you tried to install ReportViewer on a server? If you as me receive a similar error, I have a…
In this article, you will see how to read and write XML documents in Microsoft .NET using C# language. First,…
Linux GNU firebrand Richard Stallman says Windows and Apple’s OS X are malware, Amazon is Orwellian, and anyone who trusts…
Important Currently you cannot enable devices installed with Windows 10 Insider Preview with the System Setting Developer Mode controls as…
This article explains using Chart.js in Asp.net C# Web Application we can create a pie chart with database MS SQL…
Once upon a time in the tech world, obscurity was security – this being most true in the early years…
I have written the following DateDiff() function in C#. VB.NET users already had it using the Micrsoft.VisualBasic.dll assembly. Now you…
How to implement a log record changes in SQL server in an audit table and Entity Framework. This is the easy explanation and the code
am having problem while loading the CSS file through App_Themes folder but with ASP.NET authentication doesn’t work.
A common mistake in app development is not setting the correct reuseIdentifier for UITableViewCells, for UICollectionViewCells, or even UITableViewHeaderFooterViews. For…