Posts by André Moreira • 51 points
3 posts
-
2
votes1
answer53
viewsQ: Read file located in another Package
I have 3 Packages, one where the Gui class is located, another where the data reading "scripts" (in main) and photos and text files in the Resources. File file = new…
javaasked André Moreira 51 -
0
votes2
answers488
viewsQ: C# - XML Serialization error
I came across this error when trying to load an XML file through three scripts: One called Item, one Itemcollection, and the script to load the XML file. Item: using System.Collections; using…
-
1
votes1
answer438
viewsQ: C# Calling an object from a string
I wonder if there’s a way to call an object from a string. Here is an example: public class Butao { public string _Name_; public float _Price_; public Butao(string name, float price) { _Name_ =…