When an object is assigned to an object variable of the specific type, then the C# compiler performs the binding with the help of .NET Framework. C# performs two different types of bindings which are:
Early Binding
It recognizes and checks the methods, or properties during compile time. In this binding, the compiler already knows about what kind of object it is and what are the methods or properties it holds, here the objects are static objects. The performance of early binding is fast and it is easy to code. It decreases the number of run-time errors. Example:
CSharp
using System;
class Geeks {
public string name;
public string subject;
public void details( string name, string subject)
{
this .name = name;
this .subject = subject;
Console.WriteLine("Myself: " + name);
Console.WriteLine("My Favorite Subject is : " + subject);
}
}
class GFG {
static void Main( string [] args)
{
Geeks g = new Geeks();
g.details("Ankita", "C#");
g.mymethod();
}
}
|
Compile-Time error:
prog.cs(34, 5): error CS1061: Type `Geeks’ does not contain a definition for `mymethod’ and no extension method `mymethod’ of type `Geeks’ could be found. Are you missing an assembly reference? prog.cs(5, 7): (Location of the symbol related to previous error)
Explanation: In the above example, we have a class named as Geeks. This class contains details() method. Here, the compiler already knows about the properties and methods present in Geeks. But when we try to call mymethod() then it will throw an error because this method is not known by the compiler.
Late Binding
In late binding, the compiler does not know about what kind of object it is and what are the methods or properties it holds, here the objects are dynamic objects. The type of the object is decided on the basis of the data it holds on the right-hand side during run-time. Basically, late binding is achieved by using virtual methods. The performance of late binding is slower than early binding because it requires lookups at run-time. Example: In the below, program the obj holds integer type data and obj1 holds double type data. But the compiler doesn’t resolve these at compile-time. At the runtime, these dynamic objects get detected and converted into System.Int32 and System.Double respectively. Thats why the run-time resolving process is termed as late binding.
CSharp
using System;
class GFG {
static void Main()
{
dynamic obj = 4;
dynamic obj1 = 5.678;
Console.WriteLine("The type of the objects are :");
Console.WriteLine(obj.GetType());
Console.WriteLine(obj1.GetType());
}
}
|
Output :
The type of the objects are :
System.Int32
System.Double
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 Dec, 2022
Like Article
Save Article