Although this little bit of code and technique is specific to the WPF variant of CAB, I’m sure you can use it in the Windows Forms variant as well.
In the Cobalt.IDE I had developed a very similar structure to what you find in CAB but it was from the beginning clear to me that modules [...]
On May 2, 2007,
in .Net,
by Francois
Seems nobody is writing down simple examples of how to use the CAB mechanisms, so here is a snippet that might be useful to somebody one day…
[csharp]
public IStatePersistenceService PersistenceService
{
get
{
return Services.Get();
}
}
…
if (PersistenceService.Contains(“SomeKey”))
[...]




