Check out example codes for "c# get type of object". It will help you in understanding the concepts better.
Code Example 1
//Exact runtime type of the current instance.
object.GetType();
Code Example 2
use the "is" keyword
Code Example 3
string a = "This is a string";
Console.WriteLine(a.GetType())
Learn ReactJs, React Native from akashmittal.com