C# Articles (379) - Page 17

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.

379 records found.
 
Shubham0987
Starting with Emgu CV 
Last updated on: 05 Jan 2013 05:45:34 AM by Shubham0987 | Views: 11761 | Category: C# |
Votes: 1 | Rating: 5 out of 5
This is a starters post which will guide how to configure the environment and visual studio to work with emgucv, emgu cv is a wrapper library for all the open cv functions.
Bh80prk
How to implement custom httphandlers in C#? 
Last updated on: 28 Dec 2012 10:48:40 AM by Bh80prk | Views: 7924 | Category: C# |
User request application resource available in web server. IIS creates Http pipeline for the request processing.HttpContext contains request and response object. Asp.net provides two ways of injecting pre processor logic in the request pipeline through HttpHandlers and HttpModules.
Sinisreedhar
Image uploading in to Amazon s3 
Last updated on: 26 Dec 2012 10:00:13 AM by Sinisreedhar | Views: 10344 | Category: C# |
We upload images to Amazon s3 because it serve the uploaded files more efficient content delivery network of Amazon.This article describes on how to upload image file to Amazon s3.
Nagasundar_Tn
Print Diamond of Stars and Diamond space in Square 
Last updated on: 16 Nov 2012 11:54:34 AM by Nagasundar_Tn | Views: 27163 | Category: C# |
Votes: 2 | Rating: 5 out of 5
I have demonstrated how to print Diamond shape of stars and Diamond Space in square using for loops.
Nagasundar_Tn
Getting different shapes of stars using For Loops 
Last updated on: 14 Nov 2012 11:00:46 AM by Nagasundar_Tn | Views: 175015 | Category: C# |
Votes: 3 | Rating: 5 out of 5
I am using two for loops to print stars in differnt shapes.
Nagasundar_Tn
Extension Methods -C# 4.0 
Last updated on: 03 Oct 2012 03:25:08 AM by Nagasundar_Tn | Views: 7670 | Category: C# |
Here I am just explaining how can we call the Extension Methods. And using extension methods how to sort the objects and primitive data types.
Gopesh9
Func and Action Delegates 
Last updated on: 22 Aug 2012 01:33:12 AM by Gopesh9 | Views: 9106 | Category: C# |
Votes: 1 | Rating: 5 out of 5
The Func and Action Delegates were introduced in .Net Framework of 3.5. Now using this System Defined delegates, you don't have to write any other Delegate.
  • Nakul.Lande
    REST service call using OAuth 1.0 Authorization with RSA-SHA1 
    Last updated on: 27 Jul 2012 01:57:28 PM by Nakul.Lande | Views: 18439 | Category: C# |
    Votes: 3 | Rating: 4.67 out of 5
    Hi guys... Given below is the complete working code to call REST based web service using OAuth 1.0 authorization with RSA-SHA1 cryptography. The code actually contains 2 class file. Both these classes are given below. simply copy paste this in your solution and make neccessery changes as per your convenience and you are good to go.
    Stevnetk
    How can I use a HTML to PDF .NET Library from a C++ Native Windows Application 
    Last updated on: 06 Jul 2012 10:51:07 AM by Stevnetk | Views: 7821 | Category: C# |
    There are 2 possible approaches to use the html to pdf converter in a non .NET application, assuming you have a Windows server which are discussed in this article.
    Niladri.Biswas
    Way to display query execution plan(Text) from c# 
    Last updated on: 19 Jun 2012 02:13:27 AM by Niladri.Biswas | Views: 14278 | Category: C# |
    Votes: 2 | Rating: 5 out of 5
    We may sometime need to display the execution plan . I got one such requirement recently and thought of sharing the same here. I will take two examples into consideration for demonstrating the application . The first with a normal query and then the same with a stored procedure .
    Niladri.Biswas
    Some useful datatable extension methods we should know 
    Last updated on: 13 Jun 2012 06:39:22 AM by Niladri.Biswas | Views: 10713 | Category: C# |
    Votes: 1 | Rating: 3 out of 5
    Some datatable extension methods we need often in projects
    Andrewjonz
    Fixiing e24paymentpipe.dll error of HDFC payment gateway 
    Last updated on: 12 Jun 2012 05:53:31 AM by Andrewjonz | Views: 7153 | Category: C# |
    Votes: 2 | Rating: 4.5 out of 5
    This small article explains how to fix e24paymentpipe.dll assembly manifest error.
    Pavan_Kumar
    WMI and .NET 
    Last updated on: 24 May 2012 09:46:38 AM by Pavan_Kumar | Views: 17642 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    WMI is very helpful to access remote machine details.
    Hmanjarawala
    Define your own Collection class that support Iterator Pattern 
    Last updated on: 31 Mar 2012 12:20:11 AM by Hmanjarawala | Views: 8217 | Category: C# |
    Votes: 3 | Rating: 4.67 out of 5
    In this article we are discussing over how to define Iterator classes for our own define class
    Hmanjarawala
    How to use IEnumerable/IEnumerator 
    Last updated on: 27 Mar 2012 02:26:06 AM by Hmanjarawala | Views: 18044 | Category: C# |
    Votes: 4 | Rating: 4.5 out of 5
    This article describes use of IEnumerable interface for Collection types.