01/07/2015 by Nitesh

List Videos From a Channel using YouTube API V3 in C#

Friends, Google has retired YouTube API V2 and trying to fetch videos using the API V2 returns an error as “410 Gone Away“. In this post, we will see how can we retrieve all videos from a specific YouTube Channel using the latest YouTube API V3. Let’s get started creating the application. We create a…

Continue Reading »

17/06/2015 by Nitesh

Upload Files to FTP Server in C#

Friends, In some of my previous articles, I wrote about with How To List Files From FTP Server, How To Delete File From FTP Server, How To Download File From FTP Server. In this article, we will see how can we upload a file to FTP server using C# from our local hard disk. private…

Continue Reading »

15/06/2015 by Nitesh

Getting Started With HTML Agility Pack

Friends, In this post we will see how to get started with HTML Agility Pack and code samples to see how web scraping can be achieved using this package in C#. For users who are unaware about “HTML Agility Pack“, This is an agile HTML parser that builds a read/write DOM and supports plain XPATH…

Continue Reading »

14/06/2015 by Nitesh

How To Install a Nuget Package In Project

Friends, If you are a Microsoft developer, you must be aware about Nuget. In case you’re not aware, it is the package manager for the Microsoft development platform including .NET. The NuGet Gallery is the central package repository used by all package authors and consumers. In this post, I will show you how can you…

Continue Reading »

06/06/2015 by Nitesh

How To Count Occurrences of a String Within Another String in C#

Friends, In programming while performing some business logic validations, many times we need to find a text within another text. In this post, we will see how can we count occurrences of a string within another string in C#. static void CountOccurenceswWithinString() {    string test = “Hello, how are youyou you you you, you…

Continue Reading »

1 2 3 4 14