New pages
From JholJhapata
- 08:13, 1 June 2025 SudokuSolver (hist) [3,562 bytes] Admin (talk | contribs) (Created page with "Here’s a simple Sudoku Solver in C# using backtracking. It works on a standard 9x9 Sudoku grid. thumb|SudokuSolver using System; using S...")
- 15:29, 29 July 2022 OutProc Session SQLServer (hist) [2,083 bytes] Admin (talk | contribs) (Created page with "ASP.NET session state is designed to enable you to easily store user session data in different sources for your ASP.NET applications. By default, session state values and info...")
- 16:43, 28 November 2020 Threading (hist) [8,333 bytes] Admin (talk | contribs) (Created page with ".Net supports parallel execution through multithreading. A thread is an independent execution path, able to run simultaneously with other threads. A client program starts in a...")
- 18:21, 28 March 2020 Changing the color of title bar (Non Client Area) (hist) [10,189 bytes] Admin (talk | contribs) (Created page with "== Problem == == Solution == == Code == using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; usi...")
- 15:32, 18 February 2020 Simple Factory Pattern (hist) [6,688 bytes] Admin (talk | contribs) (Created page with "Simple Factory Pattern returns an instance of one of several possible classes depending on the type of data provided. It is quite common to return a common parent class and co...")
- 15:33, 8 February 2020 Garbage Collection (hist) [3,672 bytes] Admin (talk | contribs) (Created page with "The garbage collector (GC) serves as an automatic memory manager in the common language runtime (CLR). When a class object is created at runtime, certain memory space is alloc...")