Added INotifyCollectionChanged interface to ObservableCollection and ObservableDictionary; added a new dictionary type, the MultiDictionary which is equivalent to the C++ multimap<> class
git-svn-id: file:///srv/devel/repo-conversion/nusu@215 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
aa5e4d12cc
commit
a08939e914
10 changed files with 1350 additions and 70 deletions
|
@ -76,12 +76,23 @@
|
|||
<Compile Include="Source\Collections\Deque.Test.cs">
|
||||
<DependentUpon>Deque.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Collections\IMultiDictionary.cs" />
|
||||
<Compile Include="Source\Collections\IObservableCollection.cs" />
|
||||
<Compile Include="Source\Collections\IRecyclable.cs" />
|
||||
<Compile Include="Source\Collections\ItemEventArgs.cs" />
|
||||
<Compile Include="Source\Collections\ItemEventArgs.Test.cs">
|
||||
<DependentUpon>ItemEventArgs.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Collections\MultiDictionary.cs" />
|
||||
<Compile Include="Source\Collections\MultiDictionary.ValueCollection.cs">
|
||||
<DependentUpon>MultiDictionary.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Collections\MultiDictionary.Interfaces.cs">
|
||||
<DependentUpon>MultiDictionary.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Collections\MultiDictionary.Test.cs">
|
||||
<DependentUpon>MultiDictionary.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\Collections\ObservableCollection.cs" />
|
||||
<Compile Include="Source\Collections\ObservableCollection.Test.cs">
|
||||
<DependentUpon>ObservableCollection.cs</DependentUpon>
|
||||
|
@ -377,6 +388,9 @@
|
|||
<Link>Foundation.snk</Link>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Source\Cloning\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue