User contributions for Chr1ss
18 January 2025
- 10:4810:48, 18 January 2025 diff hist −20 MediaWiki:Common.js No edit summary Tag: Manual revert
- 10:4710:47, 18 January 2025 diff hist +20 MediaWiki:Common.js No edit summary Tag: Reverted
- 10:4610:46, 18 January 2025 diff hist +826 MediaWiki:Common.js No edit summary
- 10:4610:46, 18 January 2025 diff hist −826 MediaWiki:Common.css Blanked the page Tag: Blanking
- 10:4410:44, 18 January 2025 diff hist +217 MediaWiki:Common.css No edit summary
- 10:4410:44, 18 January 2025 diff hist −74 MediaWiki:Common.js Blanked the page Tag: Blanking
- 10:4310:43, 18 January 2025 diff hist −16,859 MediaWiki:Common.js Replaced content with "→Prism.js Styles: @import url('/prism.css'); →Adjust if necessary: " Tag: Replaced
- 10:4310:43, 18 January 2025 diff hist −1,286 MediaWiki:Common.css No edit summary
- 10:3710:37, 18 January 2025 diff hist +16,904 MediaWiki:Common.js No edit summary
- 10:3710:37, 18 January 2025 diff hist −80 MediaWiki:Common.css No edit summary
- 10:3710:37, 18 January 2025 diff hist +1,896 MediaWiki:Common.css No edit summary
- 10:3610:36, 18 January 2025 diff hist −26 Functional Programming →Func Delegate in C# Tag: Manual revert
- 10:3610:36, 18 January 2025 diff hist +2 Functional Programming →Func Delegate in C# Tag: Reverted
- 10:3610:36, 18 January 2025 diff hist −12 Functional Programming →Func Delegate in C# Tag: Reverted
- 10:3510:35, 18 January 2025 diff hist +36 Functional Programming No edit summary Tag: Reverted
- 10:3410:34, 18 January 2025 diff hist −2,082 MediaWiki:Common.css Replaced content with "→Prism.js Styles: @import url('/prism.css'); →Adjust path if necessary: " Tag: Replaced
- 10:3310:33, 18 January 2025 diff hist −75,970 MediaWiki:Common.js Replaced content with "importScriptURI('/prism.js');" Tag: Replaced
- 10:2810:28, 18 January 2025 diff hist +1,921 MediaWiki:Common.css No edit summary
- 10:2610:26, 18 January 2025 diff hist −34 MediaWiki:Common.js No edit summary
- 10:2510:25, 18 January 2025 diff hist +75,006 MediaWiki:Common.js No edit summary
- 10:2010:20, 18 January 2025 diff hist +258 MediaWiki:Common.js No edit summary
- 10:1910:19, 18 January 2025 diff hist +48 MediaWiki:Common.js No edit summary
- 10:1610:16, 18 January 2025 diff hist +265 MediaWiki:Common.js No edit summary
- 10:1410:14, 18 January 2025 diff hist +340 MediaWiki:Common.js No edit summary
- 10:0710:07, 18 January 2025 diff hist +141 MediaWiki:Common.css No edit summary
- 10:0610:06, 18 January 2025 diff hist +116 N MediaWiki:Common.js Created page with "importScriptURI('https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js'); hljs.highlightAll();"
- 09:0009:00, 18 January 2025 diff hist +96 N Code Smells Created page with "<syntaxhighlight lang="python"> def hello_world(): print("Hello, World!") </syntaxhighlight>"
- 08:1608:16, 18 January 2025 diff hist +39 Functional Programming No edit summary
17 January 2025
- 18:2418:24, 17 January 2025 diff hist −6 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:2318:23, 17 January 2025 diff hist −39 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:2318:23, 17 January 2025 diff hist −10 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:2218:22, 17 January 2025 diff hist +44 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:2018:20, 17 January 2025 diff hist +37 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:1918:19, 17 January 2025 diff hist +42 Paradigms, Principles, Architectures and Patterns No edit summary
- 18:1718:17, 17 January 2025 diff hist −5 Main Page No edit summary
- 18:1618:16, 17 January 2025 diff hist −4 Main Page No edit summary
- 18:1518:15, 17 January 2025 diff hist +23 Main Page No edit summary
- 18:0618:06, 17 January 2025 diff hist +7,076 N Working with XML Created page with "# XML in CSharp __TOC__ In C# you can use the built-in System.Xml namespace to extract data from XML files and write XML files. There are two common approaches for working with XML in .NET: == Streaming approach (Using XmlReader and XmlWriter) == The streaming approach is more memory-efficient for large XML files, as it processes the XML sequentially without loading the entire document into memory. Here's an example: <pre> using System; using System.Xml; // Reading fro..." current
- 17:5417:54, 17 January 2025 diff hist +1 Exception Handling Best Practices No edit summary current
- 17:5317:53, 17 January 2025 diff hist +4,251 N Exception Handling Best Practices Created page with "= Exception Handling Best Practices MSDN = MSDN: [https://learn.microsoft.com/en-us/dotnet/standard/exceptions/best-practices-for-exceptions Best practices for exceptions] __TOC__ Exception handling is a critical aspect of software development, ensuring that applications can gracefully handle errors and prevent crashes. In this article, we'll delve into best practices for handling and creating exceptions to enhance the robustness and reliability of your applications. =..."
- 17:4417:44, 17 January 2025 diff hist +5,470 N Startup of ASP.NET Core Web App Created page with "= Startup of a Web Application = __TOC__ The startup process of an ASP.NET Core web application is a crucial phase where the application is initialized, configured, and prepared to handle incoming HTTP requests. center|alt=Screenshot of Counter Strile stating My Config Settings == Initialize, configure and execute == The `Program` class contains the Main method and this is the starting point of the application. The Startup proces..."
- 17:3617:36, 17 January 2025 diff hist +25 N File:Startup webapp config pic.jpg No edit summary current
- 17:3417:34, 17 January 2025 diff hist +4,096 N Storing Database Connection Strings Created page with "= Storing Database Connection Strings = __TOC__ Nearly all Application interact with a database at some point. Therefore a database connection string is needed, that typically includes details such as the server or host name, database name, authentication credentials (such as username and password), and other parameters necessary for establishing a connection to the database. Properly configuring the connection string is crucial to ensure that the application can access..."
- 17:2917:29, 17 January 2025 diff hist 0 Main Page No edit summary
- 17:2817:28, 17 January 2025 diff hist +35 Main Page No edit summary
- 17:1917:19, 17 January 2025 diff hist +141 Main Page No edit summary
- 17:1517:15, 17 January 2025 diff hist +5,025 N Using Statement for Resource Management Created page with "= using Statement for Ressource Management = __TOC__ == Basic Example and Overview == <pre> using (var resource = new SomeResource()) { // Use the resource } </pre> This idiom ensures that resources like file streams or database connections are properly disposed of when they are no longer needed, even if an exception occurs. The `using` statement in C# is primarily used for resource management, especially for objects that implement the `IDisposable` interface. The..." current
- 17:1417:14, 17 January 2025 diff hist +26 N File:Using Statement idiom meme.jpg No edit summary current
- 17:1117:11, 17 January 2025 diff hist +4,047 N Record Type Created page with "= Record Types in C# = __TOC__ == Overview == Record types, introduced in C# 9.0, provide a way to declare '''immutable''' data types. They are ideal for representing simple data containers or DTOs (Data Transfer Objects) where immutability, value-based equality, and a sensible string representation are desired. == Purpose == The purpose of record types is to simplify the declaration of immutable data types and reduce boilerplate code associated with defining classes..." current
- 17:1017:10, 17 January 2025 diff hist +20 N File:No immutable for you.jpg No edit summary current