- Timestamp:
- 06/18/15 15:31:45 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/EasyXmlGenerator.cs
r12012 r12475 167 167 /// <param name="obj">The object.</param> 168 168 /// <param name="stream">The stream.</param> 169 public newstatic void Serialize(object obj, Stream stream) {169 public static void Serialize(object obj, Stream stream) { 170 170 Serialize(obj, stream, ConfigurationService.Instance.GetConfiguration(new XmlFormat())); 171 171 } … … 178 178 /// <param name="stream">The stream.</param> 179 179 /// <param name="config">The configuration.</param> 180 public newstatic void Serialize(object obj, Stream stream, Configuration config) {180 public static void Serialize(object obj, Stream stream, Configuration config) { 181 181 try { 182 182 using (StreamWriter writer = new StreamWriter(stream)) {
Note: See TracChangeset
for help on using the changeset viewer.