diff --git a/ExamplesAndTests/Swordfish.NET.UnitTestV3/ConcurrentObservableDictionary_Issue35.cs b/ExamplesAndTests/Swordfish.NET.UnitTestV3/ConcurrentObservableDictionary_Issue35.cs
new file mode 100644
index 0000000..268e8db
--- /dev/null
+++ b/ExamplesAndTests/Swordfish.NET.UnitTestV3/ConcurrentObservableDictionary_Issue35.cs
@@ -0,0 +1,89 @@
+using FluentAssertions;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using Swordfish.NET.Collections;
+using System.Collections.Generic;
+using System.Linq;
+
+
+namespace Swordfish.NET.UnitTestV3
+{
+ ///
+ /// This is a group of tests for Issue 35 on github
+ /// https://github.com/stewienj/SwordfishCollections/issues/35
+ ///
+ [TestClass]
+ public class ConcurrentObservableDictionary_Issue35
+ {
+ [TestMethod]
+ public void AddRangeRemoveRangeTest()
+ {
+ var keyValuePairs = Enumerable.Range(0, 10)
+ .Select(i => new KeyValuePair