Answer Overflow Logo
Change Theme
Search Answer Overflow
GitHub
Add Your Server
Login
Home
Popular
Topics
Gaming
Programming
Nick
Posts
Comments
C
C#
•
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