• 3 Posts
  • 55 Comments
Joined 3 years ago
cake
Cake day: July 2nd, 2023

help-circle

  • Well, there is zero interest if you pay it in full by the allocated date (usually 12-24 months); however, if you do not pay it in full by then (which they try to trick you into), not only do you get charged interest going forward, you also get charged interest for every month that was previously “zero interest”, which ends up being a lot, often more than the product(s) would’ve originally cost.









  • KoalaUnknown@lemmy.worldOPtoProgrammer Humor@programming.devWhat's a readability
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    edit-2
    3 months ago

    Yes, it’s cut down for the meme.

    In reality, it would probably look more like this:

    
    public class Singleton
    {
      private static readonly Lazy<Singleton> lazy = new Lazy<Singleton>(() => new Singleton());
    
      private Singleton(){}
    
      public static Singleton Instance
      {
          get
          {
             return lazy.Value;
          }
       }
    }
    
    

    or this:

    
    public class Singleton
    {
       private static readonly Singleton instance = new Singleton();
    
       private Singleton(){}
    
       public static Singleton Instance => instance;
    }