_._xena_._
_._xena_._
CC#
Created by _._xena_._ on 2/24/2023 in #help
✅ warning MSB3246: Resolved file has a bad image, no metadata, or is otherwise inaccessible.
I'm doing some codes in visual code and I don't what's wrong exactly. So the thing is I did a localhost connection from visual code using nuget and .net framework. So basically what I'm doing right now is trying to connect MySql database successfully first. It actually connects successfully but giving me this yellow error with it above
warning MSB3246: Resolved file has a bad image, no metadata, or is otherwise inaccessible. PE image does not have metadata. PE image does not have metadata. I don't know is it important or how to solve it so can anybody help ?
19 replies
CC#
Created by _._xena_._ on 2/17/2023 in #help
❔ Difference between these variants
I'm learning c# right now and I saw something as ArrayList myList = new ArrayList(); IList myList = new ArrayList(); ICollection myList = new ArrayList(); so in this case defining myList as in the first one -which is "ArrayList myList = new ArrayList();"- it has more methods in it. But we can do the others as well. My question is if you're able to have more methods and do much more things, why use IList myList = new ArrayList(); or ICollection myList = new ArrayList(); instead ? What is the difference ?
11 replies