- I live in Gurgaon and build Cloud based IT Applications using Salesforce & Microsoft Technologies. - Prady
Monthly Archives: May 2012
Silverlight – Application Library Caching
Caching assemblies at client can dramatically improve performance of a Silverlight application. When Application Library Caching is enabled for a Silverlight application, overall application startup improves as all third party assemblies/ DLLs are already on the client. In this case, … Continue reading
Posted in Knowledge Sharing, Silverlight, Troubleshooting
4 Comments
Interface with Multiple Base Interfaces
As you build interface hierarchies, in C# it is permissible to create an interface that derives multiple base interfaces. Example- public interface ICar { void Drive(); } public interface IUnderWaterCar { void Drive(); } //implementing an interface with two interfaces … Continue reading
Posted in C#, Knowledge Sharing, Troubleshooting
5 Comments