Sunday, January 30, 2022

Given a string, how do we reverse the order or words in the string. e.g. Input: Tomorrow is Sunday”. Output: Sunday is Tomorrow.

 Given a string, how do we reverse the order or words in the string. e.g. Input: Tomorrow is Sunday”. Output: Sunday is Tomorrow. 

I am using Visual Studio and open Console Application:

Add one class with named "ReverseString". Flowing code snips will help you.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace PracticTest

{

    class ReverseString

    { 

        public static String reverse(string authors)

        {                   

            string[] authorsList = authors.Split(' ');

            String result = "";

            for (int i = authorsList.Length - 1; i >= 0; i--)

            {

                result = result + authorsList[i] + " ";

            }

            return result;

        }

        public static String reverseWord(string authors)

        {

            string[] authorsList = authors.Split(' ');

            String result = "";

            for (int i = authorsList.Length - 1; i >= 0; i--)

            {

                string resultSub = string.Empty;

                string subString = authorsList[i];

                for (int j= subString.Length-1; j>=0;j--)

                {

                    resultSub = resultSub + subString[j];

                }

                result = result + resultSub+ " ";

            }

            return result;

        }

        public static String reverseWordOnly(string authors)

        {

            string[] authorsList = authors.Split(' ');

            String result = "";

            for (int i = 0; i <= authorsList.Length - 1; i++)

            {

                string resultSub = string.Empty;

                string subString = authorsList[i];

                for (int j = subString.Length - 1; j >= 0; j--)

                {

                    resultSub = resultSub + subString[j];

                }

                result = result + resultSub + " ";

            }

            return result;

        }

    }

}

---------------------------------------------------------------------------------------------------------

Call in Main method:

class Program
    {
        static void Main(string[] args)
        {           
            Console.WriteLine("Enter your details");
            string str = Console.ReadLine();
            string result = ReverseString.reverse(str);
            Console.WriteLine(result);
            result = ReverseString.reverseWord(str);
            Console.WriteLine(result);
            result = ReverseString.reverseWordOnly(str);
            Console.WriteLine(result);
            Console.ReadLine();
        }
    }


Output:





Thursday, January 6, 2022

What are Async and Await In C#?

 Basics of C# async await. In this article, you'll learn what C# async and C# await keywords are and how to use async and await in C# code.

Nowadays, Asynchronous programming is very popular with the help of the async and await keywords in C#. When we are dealing with UI, and on button click, we use a long-running method like reading a large file or something else which will take a long time, in that case, the entire application must wait to complete the whole task. In other words, if any process is blocked in a synchronous application, the whole application gets blocked, and our application stops responding until the whole task completes.

Asynchronous programming is very helpful in this condition. By using Asynchronous programming, the Application can continue with the other work that does not depend on the completion of the entire task.

We will get all the benefits of traditional Asynchronous programming with much less effort with the help of async and await keywords.

Suppose we are using two methods as Method1 and Method2 respectively, and both the methods are not dependent on each other, and Method1 takes a long time to complete its task. In Synchronous programming, it will execute the first Method1 and it will wait for the completion of this method, and then it will execute Method2. Thus, it will be a time-intensive process even though both methods are not depending on each other.

We can run all the methods parallelly by using simple thread programming, but it will block UI and wait to complete all the tasks. To come out of this problem, we have to write too many codes in traditional programming, but if we use the async and await keywords, we will get the solutions in much less code.

Also, we are going to see more examples, and if any third Method, as Method3 has a dependency of method1, then it will wait for the completion of Method1 with the help of await keyword.

Async and await in C# are the code markers, which marks code positions from where the control should resume after a task completes.

Let’s start with practical examples for understanding the programming concept.

Code examples of C# async await 

We are going to take a console application for our demonstration.

Example 1

In this example, we are going to take two methods, which are not dependent on each other.

Code sample

class Program
{
    static void Main(string[] args)
    {
        Method1();
        Method2();
        Console.ReadKey();
    }

    public static async Task Method1()
    {
        await Task.Run(() =>
        {
            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine(" Method 1");
                // Do something
                Task.Delay(100).Wait();
            }
        });
    }


    public static void Method2()
    {
        for (int i = 0; i < 25; i++)
        {
            Console.WriteLine(" Method 2");
            // Do something
           Task.Delay(100).Wait();
        }
    }
}
C#

In the code given above, Method1 and Method2 are not dependent on each other and we are calling from the Main method.

Here, we can clearly see Method1, and Method2 are not waiting for each other.

Output

 

Now, coming to the second example, suppose we have Method3, which is dependent on Method1

Example 2

In this example, Method1 is returning the total length as an integer value and we are passing a parameter as a length in a Method3, which is coming from Method1.

Here, we have to use await keyword before passing a parameter in Method3 and for it, we have to use the async keyword from the calling method.  

If we are using C# 7 or less, then we cannot use async keyword in the Main method for the console Application because it will give the error below.  

 

We are going to create a new method as callMethod and in this method, we are going to call our all Methods as Method1, Method2, and Method3, respectively.

Code sample C# 7

class Program
{
    static void Main(string[] args)
    {
        callMethod();
        Console.ReadKey();
    }

    public static async void callMethod()
    {
        Task<int> task = Method1();
        Method2();
        int count = await task;
        Method3(count);
    }

    public static async Task<int> Method1()
    {
        int count = 0;
        await Task.Run(() =>
        {
            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine(" Method 1");
                count += 1;
            }
        });
        return count;
    }

    public static void Method2()
    {
        for (int i = 0; i < 25; i++)
        {
            Console.WriteLine(" Method 2");
        }
    }

    public static void Method3(int count)
    {
        Console.WriteLine("Total count is " + count);
    }
}
C#

Code sample C# 9

class Program
 {
   static async Task Main(string[] args)
   {
     await callMethod();
     Console.ReadKey();
   }

   public static async Task callMethod()
   {
     Method2();
     var count = await Method1();
     Method3(count);
   }

   public static async Task<int> Method1()
   {
     int count = 0;
     await Task.Run(() =>
     {
       for (int i = 0; i < 100; i++)
       {
         Console.WriteLine(" Method 1");
         count += 1;
       }
     });
     return count;
   }

   public static void Method2()
   {
     for (int i = 0; i < 25; i++)
     {
       Console.WriteLine(" Method 2");
     }
   }

   public static void Method3(int count)
   {
     Console.WriteLine("Total count is " + count);
   }
}
C#

In the code given above, Method3 requires one parameter, which is the return type of Method1. Here, await keyword is playing a vital role for waiting of Method1 task completion.

Output

 

Real-time example

There are some supporting API's from the .NET Framework 4.5 and the Windows runtime contains methods that support async programming.

We can use all of these in the real-time project with the help of async and await keyword for the faster execution of the task.

Some APIs that contain async methods are HttpClient, SyndicationClient, StorageFile, StreamWriter, StreamReader, XmlReader, MediaCapture, BitmapEncoder, BitmapDecoder etc.

In this example, we are going to read all the characters from a large text file asynchronously and get the total length of all the characters.

Sample code

class Program
{  ke
    static void Main()
    {
        Task task = new Task(CallMethod);
        task.Start();
        task.Wait();
        Console.ReadLine();
    }

    static async void CallMethod()
    {
        string filePath = "E:\\sampleFile.txt";
        Task<int> task = ReadFile(filePath);

        Console.WriteLine(" Other Work 1");
        Console.WriteLine(" Other Work 2");
        Console.WriteLine(" Other Work 3");

        int length = await task;
        Console.WriteLine(" Total length: " + length);

        Console.WriteLine(" After work 1");
        Console.WriteLine(" After work 2");
    }

    static async Task<int> ReadFile(string file)
    {
        int length = 0;

        Console.WriteLine(" File reading is stating");
        using (StreamReader reader = new StreamReader(file))
        {
            // Reads all characters from the current position to the end of the stream asynchronously
            // and returns them as one string.
            string s = await reader.ReadToEndAsync();

            length = s.Length;
        }
        Console.WriteLine(" File reading is completed");
        return length;
    }
}
C#

In the code given above, we are calling a ReadFile method to read the contents of a text file and get the length of the total characters present in the text file.

In our sampleText.txt, the file contains too many characters, so It will take a long time to read all the characters.

Here, we are using async programming to read all the contents from the file, so it will not wait to get a return value from this method and execute the other lines of code. Still it has to wait for the line of code given below because we are using await keywords, and we are going to use the return value for the line of code given below.

int length = await task;
Console.WriteLine(" Total length: " + length);
C#

Subsequently, other lines of code will be executed sequentially. 

Console.WriteLine(" After work 1");
Console.WriteLine(" After work 2");
C#

Output

 

Here, we have to understand very important points that if we are not using await keyword, then the method works as a synchronous method. The compiler will show the warning to us, but it will not show any error.

We can use async and await keywords in C# to implement async programming in this easy way,

Lab 09: Publish and subscribe to Event Grid events

  Microsoft Azure user interface Given the dynamic nature of Microsoft cloud tools, you might experience Azure UI changes that occur after t...