InterviewSolution
| 1. |
Explain .net Family Of Frameworks? |
|
Answer» .NET Framework is the "full" or "traditional" flavor of .NET that's distributed with WINDOWS. Use this when you are building a desktop Windows APP or working with ASP.NET 4.5/4.6. .NET Core is cross-platform .NET that can run on Windows, Mac, and Linux. Use this when you want to build applications that can run on any platform, including ASP.NET Core (cross-platform web applications). XAMARIN (Mono) is USED for building mobile apps that can run on iOS, Android, or Windows Phone devices. .NET Framework is the "full" or "traditional" flavor of .NET that's distributed with Windows. Use this when you are building a desktop Windows app or working with ASP.NET 4.5/4.6. .NET Core is cross-platform .NET that can run on Windows, Mac, and Linux. Use this when you want to build applications that can run on any platform, including ASP.NET Core (cross-platform web applications). Xamarin (Mono) is used for building mobile apps that can run on iOS, Android, or Windows Phone devices. |
|