home.social

#programmingbasic — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #programmingbasic, aggregated by home.social.

fetched live
  1. Deep Copy vs Reference Copy of Arrays in C# Tip #46 - Understanding array copying: reference types share the same memory (like a shared toy box), while deep copies create separate data. Use Clone(), Array.Copy(), or ToArray() for deep copies.
    #ArrayCopy #DeepCopy #ReferenceTypes #CSharp #ProgrammingBasic #LearnCoding

  2. Inheritance in Python:
    Inheritance allows a class (child) to acquire properties and behaviours (methods) from another class (parent).
    #python #OOP #inheritance #codergirl #programmingbasic