Skip to main content

Popular posts from this blog

Problem with encoding Arabic with Google Chrome on Windows 10: Text not being displayed properly

تصحيح مشكلة قرائة اللغه العربيه على جوجل كروم If you have issue of text not being displayed properly in Chrome on Windows 10, you need to flow the steps below: In the browser address bar go to the Chrome flags settings by going to the following address: chrome://flags/#disable-direct-write. Change the "Disable DirectWrite Windows" from Enable to Disable. Click on "RELAUNCH NOW"!

C# ArrayList

C# ArrayList is used when there is a need for variable size array: using System; using System.Collections; namespace ConsoleApplication1 {     class Program     {         static void Main( string [] args)         {             ArrayList List1 = new ArrayList ();             ArrayList List2 = new ArrayList ();             List1.Add( "B" );             List1.Add( "A" );             List1.Add( "C" );             Console .WriteLine( "Shows Added valuess" );            ...