Resources  
  • Implement File Upload in a Blazor Web Assembly Application using .Net 7Aug 22, 2023. In this article, we will discuss how to perform the file upload activity in any Blazor Web Assembly Application.
  • Blazor Server vs. Blazor Web Assembly Jun 24, 2022. This article will clear the confusion between Blazor Server and Blazor Web Assembly.
  • Toast Notifications In Blazor Web Assembly App Using C# Jun 16, 2021. In this article, we will create a fully functional toast notifications for our Blazor web assembly application. By the end of this article, you'll be able to show different toasts depending on the level of importance (information, success, warning, and error). All the coding would only be done in c#.
  • Blazor Web Assembly 3.2 Add/Edit/Delete Fully Functional Application - Part 2Aug 21, 2020. This is part 2 of the article, and it will focus on consuming the .NET Core API created in part 1 and binding the data in our Blazor app. By the end of the article, we will have a fully functional Blazor site with Add/Edit and Delete features.
  • Blazor Web Assembly 3.2 Add/Edit/Delete Fully Functional Application - Part OneAug 18, 2020. This article guides you through creating a Blazor web assembly app with .NET Core hosting. It covers setting up .NET Core APIs, Entity Framework Core for SQL Server data access, and implementing CRUD operations.
  • Creating Your First Modal Pop Up Custom Component Using Blazor Web Assembly And .NET Core 3.1Aug 13, 2020. In our web applications, we often need to display a pop up to add new entity. This pop up is validated and managed using java scripts framework. In this article we would be using Blazor Web assembly and C# to create our modal popup as Blazor component and use it in any page. We would also do data validations on this pop-up using C# without use of JavaScript. Once the data is validated using API it would be saved in SQL database.
  • Create A To Do App With Blazor Web Assembly And gRPCJul 01, 2020. This is a step-by-step article showing how to integrate gRPC and Blazor Web Assembly.
  • Easily Create A Progressive Web App (PWA) with Blazor Web Assembly May 24, 2020. In this post, we will create a Blazor web app as Progressive Web App using Web Assembly hosting plan.
  • Exploring Blazor Web Assembly AppJan 07, 2020. In this article, you will learn how to explore Blazor Web assembly app.
  • Resolved Error - No Assembly Found Containing An OwinStartupAttribute No Assembly Found Containing A Startup Or [AssemblyName].Startup classSep 30, 2019. In this article, we will discuss the options to resolve the error "No assembly found containing an OwinStartupAttribute" and will discuss the concept of OWIN.
  • How To Create CLR Triggers In C# And Install And Uninstall CLR Assembly In MSSQL ServerMay 16, 2018. In this article, we will learn how to create CLR Triggers in C# and install & uninstall CLR assembly in MSSQL Server.
  • Create CLR Stored Procedure With And Without Namespace In C# And Install And Uninstall CLR Assembly In MSSQL ServerMay 13, 2018. In this article, we will learn how to create a CLR Stored Procedure with & without namespace in C# and install & uninstall CLR assembly in MSSQL Server.
  • Private Public Assembly in .NETJan 24, 2016. In this article you will learn about Private Public Assembly in .NET.
  • Decompile An Assembly In C#Nov 18, 2015. In this article you will learn how to decompile an Assembly in C#.
  • Getting Assembly Metadata at RuntimeMar 28, 2015. Retrieving assembly metadata at runtime in .NET involves using reflection, and accessing attributes like AssemblyVersion or custom ones. This dynamic analysis enables discovering types, members, and other assembly details programmatically for various runtime scenarios.
  • Executing Assembly Code in C#Nov 10, 2014. Learn how to integrate hardcore assembly code into managed .NET code using a VC++ DLL as an intermediary, enabling faster execution and better control over hardware. This article illustrates invoking assembly routines in C# for math operations and CPU information retrieval, facilitating performance optimization and hardware control in .NET applications.
  • Advanced .NET Assembly Internals: Part 2Nov 07, 2014. This tutorial explains the difference between private and shared assemblies and see how private and shared are created.
  • Native Assembly Programming in .NETNov 07, 2014. Learn to create EXE and DLL files using MASM in Visual Studio. Configure project settings, write assembly code, debug, and test applications. Explore the power of assembly language for faster execution and system programming.
  • .NET Assembly Internals: Part 1Nov 06, 2014. This tutorial drills down into the details of how the CLR resolves the location of externally referenced assemblies.
  • Friend Assembly Using C#Jul 12, 2014. This article explains how to to provide access to one class but not all classes.
  • Register Your Assembly in GAC Using Gacutil ExeMay 17, 2014. Here you will learn how to add an assembly to the Global Assembly Cache (GAC).
  • How to Register an Assembly or DLL in Web ApplicationsJan 18, 2013. In this article, you will learn how to register an assembly or DLL in web applications.
  • Reading Assembly attributes in VB.NETNov 10, 2012. This article allows you to read the assembly attributes information using .NET. The information store in AssemblyInfo files like Title, Description, copyright, Trade mark can be read using reflection and assembly namespace.
  • Viewing Assembly Permissions in VB.NETNov 10, 2012. In this article I will show you how you can view the Code Groups that an assembly belongs to and what permissions belong to the assembly. I will demonstrate the Caspol utility supplied with the .NET SDK.
  • Loading an Assembly on DemandJan 28, 2012. In this article, learn to dynamically load assemblies across different code bases, addressing challenges of location variations and avoiding locking in the current AppDomain.Explore the significance of new AppDomains, instantiation methods, and interfaces for dynamic loading.
  • Loading Assembly Dynamically and Calling Method (Modular Programming)Dec 12, 2011. Modular programming with silverlight is a really interesting topic. Because, Modularizing program plays a very important role while developing rich internet applications. As applications grow, there could be possibilities of performance hit due to not handling correctly.
  • Concept of Shared Assembly in .NETOct 22, 2011. Shared assemblies in .NET are reusable components accessible by multiple applications. They promote code sharing, reducing redundancy and enhancing maintainability. Strongly named and stored in the Global Assembly Cache (GAC), they ensure versioning and security, facilitating efficient deployment and management across .NET applications.
  • How to Unload an Assembly Loaded Dynamically Using ReflectionJun 01, 2011. Learn how to unload an assembly that was dynamically loaded using reflection in .NET. This guide covers essential steps, including using AppDomain for isolation, managing memory efficiently, and practical code examples in C#.
  • All about Global Assembly CacheMar 31, 2011. This small article introduces the Global Assembly Cache for the beginners.
  • Securing your .Net Assembly code Sep 17, 2010. Tips on how to secure your .net code from crackers.
  • Signing an Assembly in C# Mar 04, 2010. Signing an assembly involves applying a digital signature to it to ensure its authenticity and integrity. In C#, you can sign an assembly using a strong name key pair, which consists of a public key for verification and a private key for signing. Here's a short description
  • Dynamically Loading an assembly at Runtime and calling its methodsOct 14, 2008. This article explains how to load an assembly dynamically and call its method.
  • Dynamic Building and Execution of Assembly Using CodeDome & ReflectionFeb 01, 2008. This article shows how to enter code, compile it , execute it and apart from that access code and data member from the main or other referenced assembly during runtime.
  • Introduction to the Assembly ConceptJan 17, 2008. An introduction to the assembly concept explores the fundamental unit of deployment in .NET applications. Assemblies encapsulate code, metadata, and resources, aiding in code management, versioning, and deployment.
  • Assembly Viewer and Assembly Conflict Viewer in ASP.NETAug 10, 2006. This article show how to view assembly attributes and conflicts in ASP.NET page using C#.
  • How to Get Permissions Assign to Current Assembly in VS.NET 2005 Using C#Feb 24, 2006. The following code will explain the permissions which are assigned to a current assembly.
  • Indepths of Global Assembly CacheNov 18, 2005. In this article, we will Explore the depths of the Global Assembly Cache (GAC) in .NET Framework. Learn about assembly management, versioning, security, and deployment.
  • Custom Assembly in Reporting ServicesJun 30, 2005. This article describes a problem that occurs when you access a custom assembly in your Reporting Services report that does not have sufficient permissions on the resources in your environment. The article also provides simple steps to grant permissions to the custom assemblies that are used in the reports.
  • How to Call a .NET Assembly From a SQL Server Scheduled JobApr 27, 2005. Explore step-by-step guide showcasing integration of unmanaged calls via DTS ActiveX script to a .NET assembly within a SQL Server scheduled job. Understand assembly registration, system path configuration, and COM client setup for seamless execution.
  • Global Assembly Cache(GAC) HellJan 03, 2003. After having worked on a project involving heavy use of the Global Assembly Cache, I would like to tell you that using the GAC can be very frustrating. We had a solution which had several projects within the solution. Many of these projects referenced 1 project (utility project) which did a lot of the work which we could reuse.
  • Low Down on Installing a .NET Assembly into the GACJan 02, 2003. This article will walk you through the process of giving your assembly a strong name and installing it into the GAC. This .NET tutorial guides you through the process of creating a Shared Assembly with a strong name, installing it in the Global Assembly Cache (GAC), and referencing it in other applications.
  • Building an Assembly in .NETAug 07, 2002. In this article, I'll show you how to build an assembly step by step and create a client application to access it.
  • Utilizing Assembly Information for Your Automated Splash DialogJun 05, 2002. There are cases when you need to reuse the same splash screen or about box in many applications.
  • Modest Introduction to IL Assembly LanguageSep 03, 2001. Since I received copy of Visual Studio .NET Beta 2 and did not manage to find “ILAssemblyLanguageProgrammersReference.doc” which was included in beta 1 I decided to share my experience with other assembly enthusiasts.
  • Viewing Assembly PermissionsMay 02, 2001. In this article I will show you how you can view the Code Groups that an assembly belongs to and what permissions belong to the assembly. I will demonstrate the Caspol utility supplied with the .NET SDK.
  • Building dynamic forms with SurveyJs and Blazor WebAssembly Nov 20, 2023. In this article, we will learn about integrating the surveyJs with blazor web assembly to compose a dynamic form. we'll learn how to integrate SurveyJs into a .NET Core 6.0 Blazor WebAssembly application for creating dynamic forms.
  • CRUD Operations with EF Core 7 in Blazor WebAssemblyJul 20, 2023. In this article, we will discuss related to the perform the CRUD operation in Blazor Web Assembly-based application.
  • Develop a Blazor Web-Assembly App with Azure Function and Deploy as a Azure Static AppsJun 16, 2023. In this article, we discuss the basic concept of Blazor Web Assembly. Also, demonstrate how we can consume API endpoints with the help of Azure Function. Finally, we deploy the application as Azure Static Apps
  • Assembly In MS SQL Server Sep 15, 2021. In this article we are going to explore how to create custom CLR assembly and how to access it in the SQL Server.
  • Read CSV File From Blazor Web AssemblyMar 12, 2021. In this article, I will show you how to read a CSV file from Blazor.
  • Blazor - Running C# On Browser Using Web AssemblyApr 23, 2018. Microsoft announced the new Web UI Framework Called Blazor based on C#, Razor, and HTML which runs in the Browser using the Web Assembly.
  • How To Secure PII Data In SQL Server Using .NET AssemblySep 21, 2017. In this article, we will learn PII (Personally Identifiable Information) is used to identify individual identity markers such as SSN, DOB, Bank Account Number, etc. When you are working with financial applications you face a scenario where you have to store the data in encrypted format, so no one can see the actual data.
  • Overview of Fakes AssemblyJan 07, 2015. This article provides an overview of Fakes Assembly.
  • Anti-Reverse Engineering (Assembly Obfuscation)Nov 10, 2014. Learn how to protect your .NET source code from reverse engineering using obfuscation techniques with Dotfuscator. Explore the process step-by-step, including obfuscated code analysis and MSIL code examination. Discover how obfuscation thwarts reverse engineering while understanding its limitations.
  • What is An AssemblyApr 21, 2014. An assembly in .NET is a unit of deployment containing compiled code, metadata, and resources. It's the fundamental building block of .NET applications, facilitating deployment, versioning, and execution of code across different environments.
  • Could not load type 'System.Data.Services.Providers.IDataServiceUpdateProvider' from assemblyJul 09, 2011. In this article we will be seeing how to resolve the error “Could not load type ‘System.Data.Services.Providers.IDataServiceUpdateProvider’ from assembly ‘System.Data.Services, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’”.
  • Creating And Using Shared AssemblyApr 13, 2011. In this article, we will learn By default every assembly is a private assembly. If we add a reference to a private assembly to any project, a copy of the assembly is given to the project.
  • Assembly in .NET: Part 1Feb 01, 2011. An assembly in the .Net world is nothing but a DLL or an exe. It is a basic building block of any .Net application.
  • Access AssemblyInfo File and Get Product InformationsApr 22, 2008. Access the AssemblyInfo file to retrieve crucial product details such as version, title, and company. Utilize attributes like AssemblyVersion and AssemblyProduct to programmatically access metadata, facilitating versioning and product identification within .NET applications.
  • Part IV: Step by Step Procedure of How to Install an AssemblyJan 23, 2008. This article continue to explain how to install an assembly as the part I,II and III.
  • Part III: Step by Step Procedure of How to Install an AssemblyJan 22, 2008. This article is as in the part I and II describes the maner of how to install an assembly.
  • Installing an Assembly: Part II Using the Global CacheJan 21, 2008. This article explains installing an Assembly using the Global Cache.
  • Step by Step Procedure of How to Install an Assembly: Part IJan 16, 2008. This step by step tutorial will guide the programmer to install his assembly in the GAC.
  • Assembly in .NET 2.0Nov 13, 2007. In .NET 2.0, assemblies play a crucial role, containing code and metadata for applications. They support versioning, security, and deployment, with features like strong naming and the Global Assembly Cache (GAC), enabling efficient and secure software distribution.
  • Assembly in .NETFeb 23, 2007. C# Assembly is a standard library developed for .NET. Common Language Runtime, CLR, MSIL, Microsoft Intermediate Language, Just In Time Compilers, JIT, Framework Class Library, FCL, Common Language Specification, CLS, Common Type System, CTS, Garbage Collector, GC.
  • Delay Signing an AssemblyJan 18, 2006. In this article we will elaborate the terminology Delay Signing as well as what it means. How it works and the approach to achieve it.
  • Assembly Browser: Browsing a .NET AssemblyMay 17, 2002. Learn to create EXE and DLL files using MASM in Visual Studio. Configure project settings, write assembly code, debug, and test applications. Explore the power of assembly language for faster execution and system programming.
  • Porting Libraries to .NET StandardJul 17, 2024. Porting libraries to .NET Standard can be a highly beneficial task, ensuring your code is compatible with multiple .NET implementations such as .NET Framework, .NET Core, and Xamarin.
  • Learn about Reflection in C#Feb 13, 2024. Reflection is a powerful feature in C# that enables you to inspect and interact with types, assemblies, and objects at runtime. It provides a way to dynamically discover and use information about types, invoke methods, and access fields and properties.
  • Adding Nuget Packages/Dependent Assemblies into Microsoft D365 CRM PluginDec 28, 2023. Adding Nuget Packages into Microsoft D365 CRM Plugin.
  • .NET Vs COM (.NET In Deep)Feb 27, 2023. This article describes the details of the differences between .NET and COM technology. Also, you can find more information how.Net is working under the hood
  • State Management In BlazorJan 07, 2023. We will talk about the state management features that Blazor offers in this article. .NET 6 will be the target platform for this application's design, and Visual Studio 2022 will be used to write the code.
  • Creating Custom Drop Down List Component In Blazor 3.2 WASMSep 01, 2020. Learn to create a custom dropdown in Blazor WASM, a UI component with backend logic. Utilize this component across applications for maximum reusability. Prerequisites include Blazor and .NET Core knowledge. Implement data service calls and Entity Framework Core for data binding.
  • Blazor - C# In BrowserJun 01, 2020. In this article, you will learn about Blazor - C# in browser.
  • What Is Special About Blazor? Are Web Forms Back?Oct 01, 2019. Different Frameworks have been introduced to ease & enhance web development and user experience but no major changes have been made in how a browser works. WebAssembly is an attempt to cover this gap. ASP.NET Core Blazor also allows you to use WebAssembly Experience. In this article, we'll check quickly the changes that have been made to ASP.NET over the years.
  • Understanding Server-Side BlazorJul 29, 2018. Blazor is a .NET Core web framework that allows developers to run C# code directly in the browser using WebAssembly.It provides an alternative to traditional JavaScript frameworks like React, Angular, and Vue.
  • Understanding Process, Application Domain And AssembliesJan 05, 2018. We usually come across these terms: Process, Application Domain or App Domain, Assemblies. It is good to have a basic knowledge of these terms and how each one is related to each other.
  • How To Reverse Engineer Using OllyDbgMar 10, 2017. This article provides an introduction to obfuscation and reverse engineering, focusing on using OllyDbg as a reverse engineering tool. It explains the concept of obfuscation as a means to secure source code from reverse engineering attempts. The article demonstrates how to reverse engineer an EXE file, using a keygen.exe example to illustrate the process.
  • Extending MVC Controllers From External Assemblies And ProjectsJan 13, 2017. In this article you will learn how to extend MVC Controllers from External Assemblies and Projects.
  • Assemblies In .NET ApplicationAug 14, 2016. Understand Assemblies in .NET, including Private and Shared types, managing in Global Assembly Cache, generating Public Key with Sn.exe, versioning with AssemblyInfo.cs, and installing with Gacutil. Learn how they're core to .NET applications and their integration for efficient software development.
  • Preparing .NET Interview - Part 1 (Framework)Jan 11, 2016. Preparing for a .NET interview (Part 1 - Framework) involves understanding key concepts like CLR, BCL, assemblies, and memory management. Familiarize with C#, garbage collection, reflection, and .NET Core. Know about NuGet, DI, and .NET standards for comprehensive readiness.
  • Autocomplete TextBox in WPF (Using Only .NET and WPF Libraries)May 31, 2015. In this source sample I show how to add the autocomplete functionality in your WPF application's TextBox control using your own model data, .NET assemblies and WPF assemblies.
  • Assemblies in C#: Part 2May 27, 2015. This article explains assemblies in C# with an example.
  • Assemblies in C# : Part 1May 25, 2015. This article explains Assemblies in C#, a basic unit of application deployment and versioning.
  • Directives in ASP.Net Web PagesMar 22, 2015. In this article we will learn about the Directives of ASP.Net Web Pages.
  • Dynamically Create Instance of a Class at Runtime in C#Mar 11, 2015. This article explains how to create an instance of a class using the class name at runtime.
  • .NET Application Domain InternalsFeb 10, 2015. In this article, you‘ll drill deeper into the details of how an assembly is hosted by the CLR and come to understand the relationship between Application Domains (appdomain) and processes.
  • Binary Cracking and Byte Patching With IDA ProNov 19, 2014. This dissertation explores binary patching techniques using IDA Pro, emphasizing reverse engineering, byte-level manipulation, and assembly code analysis. It covers configuring IDA Pro for patching, analyzing binary logic, and demonstrates patching procedures via IDA scripts and manual byte editing.
  • MSIL Programming: Part 1Nov 15, 2014. Learn MSIL programming fundamentals in this comprehensive series. Explore Microsoft Intermediate Language (MSIL) concepts, .NET assembly structure, IL instructions, and .NET runtime.
  • Disassembling With Reflector: Part 2Nov 09, 2014. This article shows how to reveal the license code information by dissembling its corresponding classes after backtracking the code flow execution.
  • Disassembling With Reflector: Part 1Nov 09, 2014. This article shows dissembling of the source code of an assembly using Reflector.
  • Applied Reverse Engineering With OllyDbgOct 27, 2014. This paper explores executable cracking using OllyDbg, focusing on reverse engineering without source code. It emphasizes Assembly Programming and tools like OllyDbg and CFF Explorer. Methods include patching binaries to bypass copy protection. A trial software example demonstrates debugging and modifying code to remove expiration.
  • .NET Reverse Engineering: Part 2Oct 26, 2014. This article describes details of the .NET CLR and ILASM coding, including a detailed analysis of each opcode instruction how to integrate an IL code into an existing high-level C# written code, and how to convert an already built C# code into IL code directly.
  • Microsoft Fakes; Testing the Untestable CodeApr 07, 2014. I have always been the great fan of TDD approach of coding. But recently, I've ran into case with a situation when the code was not Testable.
  • Learn MVC BasicsMar 18, 2014. The Model View Controller (MVC) pattern is an architectural design principal that separates components of web applications.
  • ASP.Net Page DirectivesJul 11, 2013. As a ASP.NET developer everyone have to have knowledge about Page Directive. If you are a fresher and you want to know about the page directive then you can read this article
  • Using Reflection with C#May 18, 2013. This article explains discovery of types at runtime using .NET Reflection in C#. This article will also explain late binding in C# that is related to .NET reflection.
  • Using LINQ in .NETMar 21, 2013. In this article we will discuss the LINQ approach introduced in .NET 3.5 for querying.
  • Implementing Generics Classes and Functions In C# ProgramsFeb 13, 2013. Today we'll have a look at how we can implements generics in our program and how we can make our functions, code more robust and less prone to changes in program code.
  • COM Interoperability in VB.NET Part 3Nov 10, 2012. In this article I cover the area how to use a COM server in a .NET client. Existing COM components are precious resources to your managed applications. So now let us observe how you can build a .NET Client that uses a COM Server.