Reference Type vs Value Type
C#

Hello friends. In this article, we will talk about Reference Type and Value Type variables. Although we do not pay much attention while coding, it is an important issue in the software world. One of our projects is to create variables. While creating this variable,…

Swift Extension

Hello friends. In this article, we will talk about how to use an extension with Swift. First, let's talk about what is Extension. Extension is actually adding a function or another property to a class or struct or even any object. In this article, I…

Swift Variables

The most important part of a language is the part of variables. In fact, almost every other variable is similar. Variables in Swift are almost identical to both C # and Java. Usually you can define a variable using var. This is actually the easiest…