C# preguntas y respuestas de entrevista
Pregunta 11. Whats a delegate?
A delegate object encapsulates a reference to a method. In C++ they were referred to as function pointers.
Pregunta 12. Whats a multicast delegate?
Its a delegate that points to and eventually fires off several methods.
Pregunta 13. Hows the DLL Hell problem solved in .NET?
Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly.
Pregunta 14. What are the ways to deploy an assembly?
An MSI installer, a CAB archive, and XCOPY command.
Pregunta 15. Whats a satellite assembly?
When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.
Lo mas util segun los usuarios:
- Whats the advantage of using System.Text.StringBuilder over System.String?
- Can you store multiple data types in System.Array?
- Whats the difference between the System.Array.CopyTo() and System.Array.Clone()?
- How can you sort the elements of the array in descending order?
- Whats the .NET datatype that allows the retrieval of data by a unique key?