Home>
I want to store the serialized and saved object of my class in Properties.Resources and deserialize it, but any article found on the net can only find a way to deserialize from an existing file .
XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer (typeof (JISAKUCLASS));
StreamReader sr = new System.IO.StreamReader (
pathStr, new System.Text.UTF8Encoding (false));
JISAKUCLASS obj = (JISAKUCLASS) serializer.Deserialize (sr);
sr.Close ();
sr.Dispose ();
It is like the above.
Is there any way?
-
Answer # 1
Related articles
- c # - i added collider with particles to the object (prefab?) of the game (cities: skylines) using unity, but it is not reflecte
- [c #] in unity, i want to repeatedly move the cube object to the z axis, but a variable conversion error occurs
- c # - is the corner of the scaffolding object a 3d model jumped in unity? if you touch, you will fly to an abnormal height
- [unity, c #] how to specify the top object
- c # - object duplication script in unity 2d
- c # - i want to send an object from view to controller
- c # - [unity] i want to store the transformpositiony of the dynamically generated object in a list or array and get the maximum
- c # - pun2 suddenly destroy object
- c # - i want to reflect object data in view
- c # - i want to make the current angle of the object in unity the angle of the entered value (in world coordinates)
- c # - i want to display the information of the object at the mouse position in another place in unity
- c # - i want to move an object to the center of the screen in unityvr vr space
- c # - i don't understand object orientation
- c # - ray's hitpoint with a specific object
- c # - about setting clone object variables
- c # how to rotate an array of object type with foreacf
- c # - unity) object up and down
- unable to attach c # script to object
- c # - i want to rotate the gyro sensor of the smartphone and the object of the smartphone on the scene in sync with unity
- c # - [unity ray cast] execute the function of the object that received the ray
Related questions
- c # - visualstudio2019:enclose the selection in parentheses
- c # - is there a recommended book that even beginners can understand?
- c # - the button of the external process cannot be clicked by the handle operation
- (c #) i want to avoid heavy image continuous drawing of picturebox
- c # - i want to rotate an object such as picturebox with animation
- c # - get variable values from aspnet code-behind
- c # - use systemdatasqlite with visual studio for mac linked with unity
- c # excel printing
- i want to dynamically set the where condition of linq in c # visual studio2019 ??
- c # - read csv file operation
It was solved by Zuishin's advice.