private static string InstanceSizeFor(TypeDefinition type) { if (type.IsInterface()) { return("0"); } return($"sizeof ({Naming.ForType(type)}){(!type.IsValueType() ? string.Empty : "+ sizeof (Il2CppObject)")}"); }