punidota

Untitled

Mar 4th, 2016
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.IO;
  3. using System.Runtime.Serialization;
  4. using System.Xml;
  5.  
  6.  
  7. namespace SerialIndexers
  8. {
  9.     [DataContract]
  10.     class SData
  11.     {
  12.         public static List<SData> Items = new List<SData>();
  13.         [DataMember]
  14.         public string Name_ { get; set; }
  15.         public override string ToString()
  16.         {
  17.             return Name_;
  18.         }
  19.     }
  20. }
Add Comment
Please, Sign In to add comment