.NET Framework Articles (76) - Page 1

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

76 records found.
 
Poster
How to convert PDF to Excel and PDF to Word in C#/VB.NET 
Last updated on: 26 Oct 2020 08:00:54 PM by Poster | Views: 23121 | Category: .NET Framework |
PDF is widely used for its convenience and safety on the Internet. Word and Excel files are more common in their degree of versatility and editability. Converting a batch of PDF documents to Excel or Word manually is a very time-consuming task, in this article, I will show you how to convert PDF to Excel and PDF to Word programmatically in C# and VB.NET by using Spire.PDF for .NET API.
Dheeraj1987
Working with attachments in pdf using c# 
Last updated on: 24 Jan 2017 11:31:29 PM by Dheeraj1987 | Views: 5714 | Category: .NET Framework |
In this article we will explain how to work with attachments in pdf using c#. Such as add attachments to pdf, create a GoToE action to a pdf attachment, get the information of an attachment and save it to file, delete attachment from pdf.
Rajayadav
Difference between DLL and EXE 
Last updated on: 26 Dec 2015 06:20:42 AM by Rajayadav | Views: 3178 | Category: .NET Framework |
In this article, we shall learn basic difference between DLL and EXE.
Rajnilari2015
Evaluate an expression at runtime using IronJS 
Last updated on: 13 Nov 2015 06:03:25 AM by Rajnilari2015 | Views: 3102 | Category: .NET Framework |
In this article, we will see how we can use the power of DLR along with IronJS to evaluate expression at run time.
Pradeep7
Code Obfuscation 
Last updated on: 09 Apr 2015 04:36:59 AM by Pradeep7 | Views: 4114 | Category: .NET Framework |
Applications developed and compiled on .NET platform are vulnerable to reverse engineering due to the nature of .NET code compilation. When .NET applications are distributed as assemblies and executables they can be easily decompiled using the right tools to view the entire source code just as if you are viewing it in an IDE. There are a number of tools available that accomplish just that with relative ease.
Vishvvas
Interception in .NET with Castle Windsor 
Last updated on: 21 Jan 2015 01:04:39 AM by Vishvvas | Views: 9367 | Category: .NET Framework |
Votes: 1 | Rating: 5 out of 5
Interception with Castle Windsor is one of many options to achieve interception in .NET and it could be good candidate for employing interception for .NET framework based applications.
Questpond
Short note on C# NULLABLE types 
Last updated on: 26 May 2014 09:30:56 AM by Questpond | Views: 6803 | Category: .NET Framework |
Votes: 1 | Rating: 3 out of 5
In this article we will look in to importance of C# NULLABLE types.
  • Niladri.Biswas
    Let us learn Windows Installer XML (WIX) - Step by Step 
    Last updated on: 03 Feb 2013 10:27:29 PM by Niladri.Biswas | Views: 14233 | Category: .NET Framework |
    Votes: 1 | Rating: 4 out of 5
    In this article we will learn about Wix
    Shubham0987
    Creating First Emgu CV Project 
    Last updated on: 09 Jan 2013 01:52:18 AM by Shubham0987 | Views: 9006 | Category: .NET Framework |
    Votes: 2 | Rating: 5 out of 5
    This is the first project with emgu cv, it streams the webcam and shows in a imagebox and also processes the image and shows in another imagebox
    Nakul.Lande
    What is Extension Methods 
    Last updated on: 11 Dec 2012 10:20:03 AM by Nakul.Lande | Views: 14249 | Category: .NET Framework |
    Extension Methods were first introduced in VB.NET 2008 primarily to support LINQ - Language Integrated Query. But they open up a whole new dimension of programming possibilities by themselves. In this article we will take a look how these extension methods help new age of developer to extend the DLLs and Exes with new functionality like cherry on top
    Nakul.Lande
    Class Association, Aggregation and Composition 
    Last updated on: 06 Dec 2012 08:46:31 AM by Nakul.Lande | Views: 51857 | Category: .NET Framework |
    In this article, we will try to understand three important concepts: association, aggregation, and composition. We will also try to understand in what kind of scenarios we need them. These three concepts have really confused a lot of developers and in this article; my attempt would be to present the concepts in a simplified manner with some real world examples.
    Sujit9923
    .Net Framework Features, from .Net 2.0 to 4.5 
    Last updated on: 08 Nov 2012 11:50:27 PM by Sujit9923 | Views: 11921 | Category: .NET Framework |
    Votes: 1 | Rating: 5 out of 5
    This article discusses the features introduced in Microsoft .net framework 2.0, 3.0, 3.5, 4.0 and newly introduced 4.5 framework.
    Kotra.Ramakrishna
    Finding Handled Exceptions while debugging time 
    Last updated on: 18 Sep 2012 01:01:20 AM by Kotra.Ramakrishna | Views: 7103 | Category: .NET Framework |
    This article will help beginners. Handling exceptions finding
    Kishork80
    Exception Handling Scenarios in .NET 
    Last updated on: 09 Aug 2012 03:13:14 AM by Kishork80 | Views: 7724 | Category: .NET Framework |
    Votes: 2 | Rating: 5 out of 5
    This article explains the exception handling scenario in .NET.
    San.Pblr.Gct
    Merging 2 datatable columns and bind to control 
    Last updated on: 27 Jul 2012 10:58:03 AM by San.Pblr.Gct | Views: 7785 | Category: .NET Framework |
    In this article, let us see how to bind a combobox with different columns from different datatables. eg. I have a datatable “Server” with columns server and database. Another datatable “server1” with columns servername and database name. Now I want to display all the values in the server and server name columns into a single combobox.