Posts

Thought I'd try MAUI for my double screen video attempt

.NET MAUI Data Binding with MVVM & XAML Damn this declarative stuff is confusing.  No DB access their either. https://www.youtube.com/watch?v=5Qga2pniN78&list=PLdo4fOcmZ0oUBAdL2NwBpDs32zwGqb9DY

difference between field and property in c#

In C#, a field is a variable (that can be of any type) that is defined inside a class. It can be used to define the characteristics of an object or a class. On the other hand, a property is a member of the class that provides an abstraction to set (write) and get (read) the value of a private field. https://www.educative.io/answers/what-is-the-difference-between-fields-and-properties-in-c-sharp Generally fields are private, as the point of a property is you have getter and setter code-handled capabilities.

Microsoft's own course

  https://www.youtube.com/playlist?list=PLdo4fOcmZ0oULFjxrOagaERVAMbmG20Xe https://youtu.be/ZXCMBOxry8A?si=k5F0Ool7fKHUshh7 checked keyword was new to me [pt8] integers: integer, long and bigint... int a = (int)42.1      float is 32 bit,  double is 64 bit. However this is all BS:  So as usual go for decimal... But instead of D we use M [pt12]  var keyword to avoid repetition when right-side strongly typed. [pt13] ^ operator and [2..4]  oh, that's start at 2 and up to but not included 4 names = [..names."Damian"]  is a new c# feature.    <why?>

LINQ

 Seems I done a lot of these, but there might be some gems in this list https://www.youtube.com/watch?v=7-P6Mxl5elg&t=208s

IDBCRUDoperations

Image
 

Repository Pattern, Interfaces and Dependency Injection

Image
  This guy's made a clear video here.  Demostrating use of Repository Pattern, Interfaces and Dependency Injection.  Need to implement this in one of my projects