└── ChatterWorld remoting
├── Chatter
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Chatter.exe
│ │ ├── Chatter.pdb
│ │ ├── InterfacesChatterWorld.dll
│ │ └── InterfacesChatterWorld.pdb
│ ├── Chatter.cs
│ ├── Chatter.csproj
│ ├── Chatter.csproj.user
│ ├── Form1.cs
│ ├── Form1.resx
│ └── obj
│ └── Debug
│ ├── Chatter.exe
│ ├── Chatter.Form1.resources
│ ├── Chatter.pdb
│ ├── Chatter.projdata
│ ├── temp
│ └── TempPE
├── InterfacesChatterWorld
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── InterfacesChatterWorld.dll
│ │ └── InterfacesChatterWorld.pdb
│ ├── InterfacesChatterWorld.csproj
│ ├── InterfacesChatterWorld.csproj.user
│ ├── InterfacesChatterWorld.sln
│ ├── InterfacesChatterWorld.suo
│ ├── Interfaces.cs
│ └── obj
│ └── Debug
│ ├── InterfacesChatterWorld.dll
│ ├── InterfacesChatterWorld.pdb
│ ├── InterfacesChatterWorld.projdata
│ ├── temp
│ └── TempPE
└── Room
├── AssemblyInfo.cs
├── bin
│ └── Debug
│ ├── InterfacesChatterWorld.dll
│ ├── InterfacesChatterWorld.pdb
│ ├── Room.exe
│ └── Room.pdb
├── Form1.cs
├── Form1.resx
├── obj
│ └── Debug
│ ├── Room.exe
│ ├── Room.Form1.resources
│ ├── Room.pdb
│ ├── Room.projdata
│ ├── temp
│ └── TempPE
├── Room.cs
├── Room.csproj
└── Room.csproj.user
22 directories, 39 files