Answers for "c# get type of member"

C#
3

get type of variable c#

string a = "This is a string";
Console.WriteLine(a.GetType())
Posted by: Guest on May-13-2020
0

c++ get type name of object

#include <iostream>

int main() {
	int myNum;
  	std::cout << typeid(myNum).name();
  	return 0;
}
Posted by: Guest on May-07-2020

Code answers related to "c# get type of member"

C# Answers by Framework

Browse Popular Code Answers by Language