1
Reply

what is the difference between early binding and late binding in .net?

sai

sai

17y
14.6k
0
Reply

    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

    17y
    0