c# get type of member code example
Example 1: c# get type of object
//Exact runtime type of the current instance.
object.GetType();
Example 2: get type of variable c#
string a = "This is a string";
Console.WriteLine(a.GetType())
Example 3: c++ get type name of object
#include <iostream>
int main() {
int myNum;
std::cout << typeid(myNum).name();
return 0;
}