c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android

Latest posts on tagged on "CSharp"

How can be perform foreach statement implemented using while statement?

| | Category: c# .net

The following example describes how to perform foreach statement implemented using while statement. First the IEnumerablecollection is asked to create new enumerator instance (which implements IEnumerator). Then it calls IEnumerator.MoveNext() method until it returns false.

How to jump out of foreach with break statement in C#?

| | Category: c# .net

The following example shows how to break out of a foreach statement in c#. If break statement is used within the loop body, it stops the loop iterations and goes immediately after the loop body.

How to use foreach with the continue?

| | Category: c# .net

This articles describes how to use foreach with the continue. If continue statement is used within the loop body, it immediately goes to the next iteration skipping the remaining code of the current iteration.

How to perform basic foreach loop?

| | Category: c# .net

This example describes how to perform foreach statement. The foreach statement iterates through a collection that implements the IEnumerable interface. When we compare with for statement foreach does’t use the indexes.

How to Download a Files from web?

| | Category: c# .net

To download a file without blocking the main thread to use asynchronous method DownloadFileAsync.The DownloadFile method downloads to a local file data from the URI specified by in the address parameter. This method blocks while downloading the resource. To download a resource and continue executing while waiting for the server's response, use one of the DownloadFileAsync methods.

How to get ip address or host name using c# .net?

| | Category: c# .net

In general, we are getting IP address by run command by type keyword ipconfig . And, if we execute this as Administrator Command Prompt then you will get the basic Network details like Host Name, IP Address and Gateway.

How to reverse a string in c# without using built in function?

| | Category: c# .net

In this article I am going to reverse string without using build in function. Here reverse string achieved without using ToCharArray. First of all calculating the string length after loops the calculated string length and logic implemented.

How to reverse a string in c# ?

| | Category: c# .net

In this article we try to implement reverse string. String is converted to char array using ToCharArray method after that reverse operation will happen.

How to convert String array to List using C#?

| | Category: c# .net

In this article I will explain how to convert String array to List using C#. we can achieve by using .ToList() on array types, this seems to be available only in .Net 3.5+.

[solved]Unable to read data from the transport connection: net_io_connection closed.

| | Category: c# .net

When you try to send an email from web application if you got exceptions like this your Username or password must be wrong and also Check port is 465 (SSL) change to 80.

Page 20 of 23