예제 #1
0
        /// <summary>
        ///
        /// </summary>
        public static void SaveToStream <TKey, TValue>
        (
            [NotNull] this DictionaryList <TKey, TValue> list,
            [NotNull] BinaryWriter writer
        )
        {
            Code.NotNull(list, "list");
            Code.NotNull(writer, "writer");

            Log.Error
            (
                "DictionaryListUtility::SaveToStream: "
                + "not implemented"
            );

            throw new NotImplementedException();
        }
예제 #2
0
        /// <summary>
        ///
        /// </summary>
        public static void RestoreFromStream <TKey, TValue>
        (
            [NotNull] this DictionaryList <TKey, TValue> list,
            [NotNull] BinaryReader reader
        )
        {
            Code.NotNull(list, "list");
            Code.NotNull(reader, "reader");

            Log.Error
            (
                "DictionaryListUtility::RestoreFromStream: "
                + "not implemented"
            );

            throw new NotImplementedException();
        }