Aspose.Cells.Examples.CSharp.Articles.ReadingCellValuesInMultipleThreadsSimultaneously.ThreadLoop C# (CSharp) Method

ThreadLoop() public static method

public static ThreadLoop ( ) : void
return void
        public static void ThreadLoop()
        {
            Random random = new Random();
            while (Thread.CurrentThread.IsAlive)
            {
                try
                {
                    int row = random.Next(0, 10000);
                    int col = random.Next(0, 100);
                    string s = testWorkbook.Worksheets[0].Cells[row, col].StringValue;
                    if (s != "R" + row + "C" + col)
                    {
                        Console.WriteLine("This message will show up when cells read values are incorrect.");
                    }
                }
                catch { }
            }
        }
ReadingCellValuesInMultipleThreadsSimultaneously