Some My Experiences

Header Ads

Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts

Sunday, 28 October 2018

28 Oct

Calling API Using HttpClient in C#

This section show example how to calling API using HttpClient in C#. ApiCallerHelper.cs using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; namespace WebApplicationMvcApi.Helper { public class ApiCallerHelper { private static string endpointName =...

Thursday, 17 March 2016

17 Mar

Breaking Simple Captcha with Tesseract in C#

This post shows how to break simple captcha using Tesseract in C#. Challenges in the captcha solving is how to train or make a good algorithm so that the computer more better in recognizing the text, such as a human can read the captcha...
17 Mar

How To Use MailChimp API V3.0 in C#

 To use MailChimp API V3.0 in C# language, do the steps below: Create C# Web Form Project called 'MailChimpV3'. Add Json.NET Framework to project Reference. Here I use  Json 8.0.2 version from Newtonsoft. Create folder called `MailChimp` on the project. Add C# class called `MailChimpManager.cs` in the `MailChimp`...
17 Mar

List in C#

List Class defined in System.Collections.Generic Namespace in mscorlib.dll assembly, it provide methods to search, sort and manipulate lists. Elements in List can be accessed using an integer index, index start from 0 (zero-based). We can create object list from this class with syntax : List<T> where T is The type...