- Timestamp:
- 09/12/11 10:12:50 (13 years ago)
- Location:
- branches/PersistenceSpeedUp/HeuristicLab.Persistence/3.3/Core/Tokens
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp/HeuristicLab.Persistence/3.3/Core/Tokens/TypeToken.cs
r5445 r6737 40 40 41 41 /// <summary> 42 /// The full type name of the serialized used to43 /// serialize the type.44 /// </summary>45 public readonly string Serializer;46 47 /// <summary>48 42 /// Initializes a new instance of the <see cref="TypeToken"/> class. 49 43 /// </summary> … … 52 46 /// <param name="serializer">The full name of the serializer 53 47 /// used to serialize the type.</param> 54 public TypeToken(int id, string typeName , string serializer) {48 public TypeToken(int id, string typeName) { 55 49 Id = id; 56 50 TypeName = typeName; 57 Serializer = serializer;58 51 } 59 52 }
Note: See TracChangeset
for help on using the changeset viewer.