Can you recomment a better IDE for Unity C# coding? [closed]

Updated 02/08/2022 JetBrains Rider There’s a new cross-platform .NET IDE by JetBrains – Rider with build-in resharper-like commands and quite a list of features including rich web development support and specifically Unity Unity support Deeper integration with the Unity Editor: if a method/script is used in a scene, prefab, or asset file, navigating from the … Read more

SmtpClient with Gmail

Gmail’s SMTP server requires you to authenticate your request with a valid gmail email/password combination. You do need SSL enabled as well. Without actually being able to see a dump of all your variables being passed in the best guess I can make is that your Credentials are invalid, make sure you’re using a valid … Read more

C# The type or namespace name `List’ could not be found. But I’m importing System.Collections.Generic;

The issue comes from your instantiation of new List(). These also need the generic component: public static List<string> items = new List<string>(); public static List<double> itemsprice = new List<double>(); public static List<double> qu = new List<double>(); That is, there is no type List but there is a generic type List<T>. More information and examples of … Read more

What are MonoDevelop’s .pidb files?

From a MonoDevelop blog post: There were several long time pending bug reports, and I also wanted to improve a bit the performance and memory use. MonoDevelop creates a Parser Information Database (pidb) file for each assembly or project. This file contains all the information about classes implemented in an assembly, together with documentation pulled … Read more