Go – Interfaces

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

This topic is about Go - Interfaces. Go programming provides another data type called interfaces which represents a set of method signatures. The struct data type implements these interfaces to have method…

Continue ReadingGo – Interfaces

Go – Recursion

  • Post author:
  • Post category:GO
  • Post comments:0 Comments

Recursion is the process of repeating items in a self-similar way. The same concept applies in programming languages as well. If a program allows to call a function inside the…

Continue ReadingGo – Recursion

C# – Enums

  • Post author:
  • Post category:C#
  • Post comments:0 Comments

An enumeration is a set of named integer constants. An enumerated type is declared using the C# Enums keyword. C# enumerations are value data type. In other words, enumeration contains its own…

Continue ReadingC# – Enums