Mritunjay Kumarcodecomponents.hashnode.dev·Jun 10, 2024Learn C#.NET Advancec LevelIf you do not understande what is .NET ,what is C#, Compilation of C#, execution of C#, Data types,Operatord, type casting, Strings, Conditional statments, Controll statments, Loop's, Array's and Method's. Then first understand this then come hear, h...3 likes·426 readsadvance C#
Kate Brownkateeliza29.hashnode.dev·Apr 28, 2024My Top 5 Most Used LINQ Methods in C#What is LINQ? LINQ is 'Language Integrated Query'. LINQ queries allow you to extract data from enumerables (lists, arrays, etc.) in a similar way to how you'd query a database with SQL. This was introduced in 2007, so it's been around for a while, a...81 readslinq
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 2, 2023C# LoopsA repetitive statement in computer science refers to a statement or block of code that is executed repeatedly for a fixed number of times or as long as a certain condition is met. Some examples of repetitive statements are: • For loops - Execute a bl...C# FundamentalsLoops
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 31, 2023C# Data TypesDesign C# is a statically typed language, which means that variables are associated with a specific data type from compile time itself. The main advantage of this is: Early error detection: Since the type of a variable is known at compile time, the ...C# Fundamentalslearn c sharp
Joseph Lampteywadeydev.hashnode.dev·Sep 19, 2023Methods in C#Methods sometimes referred to as functions, offer a powerful tool for encapsulating logic within your code, enabling you to define it once and apply it across various sections of your application. This practice greatly simplifies the maintenance of y...Understanding C# with Examples and Use Cases# csharp # beginners # dotnet # programming
Joseph Lampteywadeydev.hashnode.dev·Sep 19, 2023Properties in C#Exposing your class fields directly and making them accessible throughout your entire application can be problematic as it undermines your control over the values assigned or retrieved. In contrast, properties in C# provide a mechanism for encapsulat...Understanding C# with Examples and Use Cases# csharp # beginners # dotnet # programming
Bug And Fixbugandfix.com·Sep 14, 2023DDD in EF 8 - Complex types as value objectsYoutube Video https://youtu.be/gZ1XwBQ0E6M69 readsdotnet
Leoneil Odrunialeoneilodrunia.hashnode.dev·Jul 24, 2023Introduction of C# (part 2/2)If/Else Conditions and If Statements C# supports the usual logical conditions from mathematics: Less than: a < b Less than or equal to: a <= b Greater than: a > b Greater than or equal to: a >= b Equal to: a == b Not Equal to: a != b You can ...C#
Leoneil Odrunialeoneilodrunia.hashnode.dev·Jul 18, 2023Introduction of C# (part 1/2)Table of Contents What is C#? C# is used for IDE (Integrated Development) Syntax Variables Data Types User Input Operators Arithmetic Operators Assignment Operators Comparison Operators Logical Operators What is C#? C# is pronounce...28 readsC#
Thiago Kasper de Souzathiagoks.hashnode.dev·Jan 26, 2023LinkedIn Learning - C#Project link: https://github.com/ThiagoKS-7/Linkedin-Learning-CSharp1 In this LinkedIn Learning course, the main objective was not necessarily to create a system or platform, but to train the fundamentals of the language, starting with variables, the...# csharp # beginners # dotnet # programming