Nick
Nick
CC#
Created by Nick on 5/7/2024 in #help
Static Classes without Implementation
What do static classes without implementation mean? Like this:
c#
public static class Host
{
public static HostApplicationBuilder CreateApplicationBuilder();
...
}
c#
public static class Host
{
public static HostApplicationBuilder CreateApplicationBuilder();
...
}
Does the runtime contain implementations and resolve them dynamically at runtime? Where/How can I read the code for these functions then?
27 replies