using static System.Console;
using System.Collections.Generic;
public static void Main() {
WriteLine(typeof(Nullable).Name);
WriteLine(typeof(Nullable<>).Name);
List<int> lInt = new List<int>();
Dictionary<string, int> dStingInt = new Dictionary<string, int>();
PrintObject<decimal?>(nDecimal);
PrintObject<List<int>>(lInt);
PrintObject<string>(xString);
PrintObject<decimal>(xDecimal);
PrintObject<Dictionary<string, int>>(dStingInt);
private static void PrintObject<T>(T obj) {
var generic = type.IsGenericType;
var nullable = generic && type.GetGenericTypeDefinition() == typeof(Nullable<>);
WriteLine($"{type.Name} - {type.IsGenericType} - {(generic ? type.GetGenericTypeDefinition().Name : (""))} - {(nullable ? Nullable.GetUnderlyingType(type).Name : (""))} - {type.Name}\n");