C #: which collection is already serializable (I mean, created using Microsoft)

I need to serialize the collection, but I would like to know if there is any already serializable collection before accepting the code from the third parts or writing it myself. I already implemented some serializable collection, but this is a dumb situation when I just need to transfer an array of serializable classes to the clipboard and vice versa (copy / paste).

Any suggestion on what I should use?

+5
source share
2 answers

System.Collections System.Collections.Generic . , ( T ). Dictionary<K,V>, KeyValuePair<K,V> .

+9

List<T> , .

+2

All Articles