what is the difference between early binding and late binding in .net?
sai
Early binding determines execution path at compilation, late binding allows for dynamic execution at runtime. Provide the function pointer to the object at compile time called as Early Binding. provide the function pointer to the object at runtime called as Late Binding