What is ASP.NET Core MVC ? The ASP.NET Core MVC framework is a lightweight, open source, highly testable presentation framework optimized for use with ASP.NET Core. ASP.NET Core MVC provides a patterns-based way to build dynamic websites that enables a clean separation of concerns. It gives you full control over markup, supports TDD-friendly development andContinue reading “What is ASP.NET Core MVC ?”
Tag Archives: C#
What is the difference between C# Class and Struct ?
What is the difference between C# Class and Struct? Struct is Value Type Struct is stored in Stack Class is Reference Type Class is stored in heap memory allocation Like classes, structs are data structures that can contain data members and function members, but unlike classes, structs are value types and do not require heap allocation. AContinue reading “What is the difference between C# Class and Struct ?”
How to return multiple values in C# ?
How to return multiple values in C#? Methods can return a value to the caller. If the return type (the type listed before the method name) is not void, the method can return the value by using the return keyword. A statement with the return keyword followed by a variable, constant, or expression that matches the return type will returnContinue reading “How to return multiple values in C# ?”
How to change the height of header in DataGridView ?
How to change the height of header in DataGridView ? All developers might have gone through changing the data grid view header size to increase. You add data grid view control to windows form and press F7 and go to designer view or else go to your code behind file and add the below codeContinue reading “How to change the height of header in DataGridView ?”
Publishing an existing project to GitHub
Publishing an existing project to GitHub Open a solution in Visual Studio. If solution is not already initialized as a Git repository, select Add to Source Control from the File menu. Open Team Explorer. In Team Explorer, click Sync. Click the Publish to GitHub button. Enter a name and description for the repository on GitHub. Check the Private Repository box if you want to uploadContinue reading “Publishing an existing project to GitHub”
Welcome to the Visual Studio IDE
Welcome to the Visual Studio IDE The Visual Studio integrated development environment is a creative launching pad that you can use to edit, debug, and build code, and then publish an app. An integrated development environment (IDE) is a feature-rich program that can be used for many aspects of software development. Over and above the standard editorContinue reading “Welcome to the Visual Studio IDE”
What is .NET ?
What is .NET ? .NET is an open source developer platform, created by Microsoft, for building many different types of applications. .NET .NET is a free, cross-platform, open source developer platform for building many different types of applications. With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, gaming,Continue reading “What is .NET ?”
.NET Core 3.0 launches at .NET Conf for Free
.NET Core 3.0 launches at .NET ConfJoin the .NET Conf 2019 free virtual event September 23-25 to learn about the newest developments across the.NET platform, open source, and development tools. Mark your calendar! NET Conf is a FREE, 3 day virtual developer event co-organized by the .NET community and Microsoft. This year.NET Core 3.0 willContinue reading “.NET Core 3.0 launches at .NET Conf for Free”
Introducing .NET 5
Introducing .NET 5 Today, Microsoft announcing that the next release after .NET Core 3.0 will be .NET 5. This will be the next big release in the .NET family. There will be just one .NET going forward, and you will be able to use it to target Windows, Linux, macOS, iOS, Android, tvOS, watchOS and WebAssembly andContinue reading “Introducing .NET 5”
Solved : not a legal oleaut date
not a legal oleaut date You have landed this page it means you have solution already ! I get you the direction After l lot of finding on the error “not a legal oleaut data”, the root cause is that your some of your transactions or data having invalid year format For an Example : 01-01-0018The redContinue reading “Solved : not a legal oleaut date”
