TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Version
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
George (5)
Jitendra Mesavaniya (5)
Chetan Sanghani (4)
Geo J Thachankary (3)
Ayush Gupta (3)
Allen Oneill (2)
Vishal Yelve (2)
Rinki (2)
Sanjay Kumar (2)
Akhil Mittal (2)
Alagunila Meganathan (2)
Ziggy Rafiq (2)
Praveen Sreeram (2)
Maniteja Vegi (2)
Mark Pelf (2)
Arwin Neil Baichoo (2)
Jalpa Dhola (1)
Aman Gupta (1)
Željko Perić (1)
Sigar Dave (1)
Rohit Gupta (1)
Viknaraj Manogararajah (1)
Atul Sharma (1)
Vinay Ayinapurapu (1)
Nandan Hegde (1)
Nikhil Patil (1)
Sagar Pardeshi (1)
Sai Kumar Koona (1)
Ashutosh Singh (1)
Muhammad Asif (1)
Sreenath Kappoor (1)
Ammar Shaukat (1)
Rijwan Ansari (1)
Adalat Khan (1)
Gaurav Katara (1)
Saineshwar Bageri (1)
Lokendra Singh (1)
Raj Kumar (1)
Mayur Dighe (1)
Salman Beg (1)
Kautilya Utkarsh (1)
Jefferson S. Motta (1)
Rohol Amin (1)
Shivprasad (1)
Kunal Patil (1)
Suthish Nair (1)
Sandeep Singh Shekhawat (1)
Kaviya Balasubramanian (1)
Sachin Kalia (1)
Amit Choudhary (1)
Shiv Sharma (1)
Jay Krishnareddy (1)
Anil Kumar (1)
Ravee Rasaiyah (1)
Gaurav Tomar (1)
Vidya Vrat Agarwal (1)
Sairam (1)
Amit Patel (1)
Rajeesh Menoth (1)
Kiran Kumar Talikoti (1)
Vithal Wadje (1)
David Mccarter (1)
C# Curator (1)
Rahul Bansal (1)
Sourabh Somani (1)
G Gnana Arun Ganesh (1)
Rafnas T P (1)
Ankeet Dange (1)
Ishika Tiwari (1)
Mukesh Kumar (1)
Vignesh Mani (1)
Neel Bhatt (1)
Rohit Rao (1)
Sarathlal Saseendran (1)
Related resources for Version
No resource found
Organizing Resource Deployments Using Bicep
11/14/2024 11:01:24 AM.
Bicep modules simplify Azure resource deployment by enhancing organization, reusability, and maintainability. They allow for encapsulating deployment details into manageable components, enabling easy
Angular Versions
11/12/2024 4:51:35 AM.
This article discusses Angular history.
Fetch Document Versions in SharePoint using PowerShell
11/8/2024 4:24:10 AM.
This PowerShell script connects to a SharePoint site to retrieve document versions from a specified library. It gathers metadata, including version numbers, last modified dates, and user details, then
Java 23: The Latest Features and Improvements
10/28/2024 5:49:16 AM.
This latest release introduces updates in pattern matching, memory management, and enhanced API functionalities. Java 23 simplifies coding tasks, boosts efficiency, and strengthens application stabili
Array to Text File: Detailed Overview of ArrayIOExtensionsLib Class
10/22/2024 10:04:42 AM.
This article provides a comprehensive overview of the ArrayIOExtensionsLib class, detailing its functionality for converting arrays to text files in C#. We explore its key features, methods, and pract
SharePoint : Optimize SharePoint Storage with Version History Limits
10/16/2024 10:38:11 AM.
Discover how Microsoft's new version history limits (currently in preview) can help streamline document management and optimize SharePoint and OneDrive storage. Learn how to configure organization
What's New With Python 3.13?
10/11/2024 7:20:54 AM.
This article describes the enhancements Python 3.13 is bringing with it. Python 3.13 introduces enhanced REPL features, experimental JIT compilation, free-threaded CPython mode, improved error message
Managing Amazon S3 Buckets
9/29/2024 5:04:09 AM.
This guide walks through managing AWS S3 Buckets, covering file and folder uploads, enabling bucket versioning for version control, and restoring files in case of accidental deletion.
API Versioning and Enable Authorization in Swagger UI .NET Core
9/25/2024 9:05:09 AM.
In this article, we explore API versioning and how to enable authorization in Swagger UI for a .NET Core Web API. We’ll discuss best practices for managing API versions, ensuring backward compatibilit
Design Principle (2): Inversion of Control (IoC) Principle
9/19/2024 3:44:37 PM.
This series delves into Software Design Principles, with a focus on the Inversion of Control (IoC) Principle in this article. It covers Dependency Inversion, Dependency Injection, IoC Containers, and
How To Know The Version Of SharePoint
9/19/2024 10:05:40 AM.
This article explains how to determine the version of your SharePoint site using two methods. The first method involves accessing the host header URL and appending ‘/_vti_pvt/service.cnf’. The second
POCO to Dictionary Conversion Techniques in C#
9/16/2024 5:02:08 AM.
This article explores five methods for converting a C# POCO to a dictionary using reflection, LINQ, JSON libraries, and ExpandoObject, comparing their performance through Benchmark.NET to find the bes
API Versioning Best Practices in .NET 8
9/12/2024 10:48:15 AM.
Learn how to implement API versioning in .NET 8 to manage changes and maintain compatibility. This article covers versioning strategies like URI Path, Query Parameter, Header, and Content Negotiation.
Versions In Different Technologies
9/7/2024 8:56:08 AM.
This article will list the versions in the different Techs.
Automated Way for PBIX to PBIP File Conversion
9/4/2024 6:06:27 AM.
To automate PBIX to PBIP conversion, install the PowerShell module PBIXtoPBIP_PBITConversion using Install-Module -Name PBIXtoPBIP_PBITConversion. Use PBIXtoPBIP_PBITConversion -PBIXFilePath "<
Understanding Dependency Inversion Principle (DIP) with C#
8/27/2024 9:40:32 AM.
This guide explains how DIP enhances software design by decoupling high-level and low-level modules, promoting flexibility and maintainability. Understand its implementation using Dependency Injection
Understanding Adapter Design Pattern
8/16/2024 7:15:32 AM.
The Adapter Design Pattern is a structural pattern that allows incompatible interfaces to work together. It acts as a bridge between two incompatible interfaces by converting the interface of a class
New Features in SharePoint Document Libraries
8/16/2024 4:38:27 AM.
Explore the latest enhancements in SharePoint Document Libraries with improved version history controls. This update offers more precise management of document versions, streamlined access to historic
Version History, Run History & Limitations in Power Automate Flow
8/14/2024 5:24:45 AM.
Power Automate now offers versioning and drafting tools for cloud flows, enabling users to save incomplete drafts and publish them later. The new version history feature, stored in Dataverse, allows v
How To Enable C# 7.1 Version To My Projects
8/7/2024 10:45:55 AM.
To update your project to C# 7.1, you can use one of three methods: 1) Through Visual Studio Project Properties by selecting C# 7.1 in the Build menu. 2) By editing the csproj file and setting <Lan
Understanding .NET Standard Versions
7/19/2024 6:32:24 AM.
.NET Standard defines a consistent set of APIs across .NET implementations like .NET Framework, .NET Core, and Xamarin. Developers use it to create libraries that work seamlessly across platforms, ens
Advanced Topics in .NET Standard
7/17/2024 5:48:43 AM.
.NET Standard is a formal specification of .NET APIs that are intended to be available on all .NET implementations. It enables code sharing and reuse across different .NET platforms, including .NET Co
Porting Libraries to .NET Standard
7/17/2024 12:30:37 AM.
Porting libraries to .NET Standard can be a highly beneficial task, ensuring your code is compatible with multiple .NET implementations such as .NET Framework, .NET Core, and Xamarin.
Learn Clean Architecture in .NET
7/4/2024 8:48:38 AM.
Clean Architecture is a software design philosophy that emphasizes creating maintainable, testable, and understandable systems by following principles like separation of concerns, dependency inversion
.NET Frameworks Versions & it's Evolution
7/4/2024 5:45:52 AM.
Explore the evolution of .NET Frameworks, tracing from its inception to modern iterations like .NET Core, .NET 5, and .NET 6. Discover how Microsoft's development tools and runtime environments ha
Query to Find SQL Server Version
7/2/2024 7:11:42 AM.
To identify the version of SQL Server running, use the query SELECT @@VERSION AS 'SQL Server Version';. This returns detailed information including version number, edition (like Developer Edit
Audit Trail And Data Versioning With C# And MVC
6/26/2024 10:24:23 AM.
This article describes implementing an audit trail and data versioning system using C# reflection and SQL databases. It focuses on medical records applications, outlining database setups, MVC applicat
XAML Value Converter With A Simple Example
6/24/2024 8:59:15 AM.
Learn how to convert data formats using XAML's value converters, crucial for transforming string input (like from a textbox) into boolean values (for checkbox status). Explore setup, implementatio
How To Convert Older C# Version to C# 12 With Example
6/17/2024 5:33:27 AM.
Many developers still use older versions of C# due to legacy codebases, corporate constraints, and familiarity with older language features. Upgrading can seem daunting, but modern versions of C# offe
Display Google Maps In MVC Core
6/13/2024 8:23:21 AM.
Integrating Google Maps API in applications requires obtaining an API key from the Google Maps Platform. Developers embed the API in HTML with or without a key for commercial or development use, displ
Understanding Inversion of Control and Dependency Injection
6/11/2024 7:16:26 AM.
IoC and DI are essential for modular, testable, and maintainable C#/.NET code. IoC transfers control of object creation to an external framework, while DI injects dependencies into classes. Implement
Creating PDF From HTML Using JSPDF
6/7/2024 10:42:04 AM.
Learn how to create PDFs from HTML using the jsPDF library in this comprehensive guide. Discover the step-by-step process to convert your HTML content into a PDF document effortlessly with JavaScript.
Understanding Versioned Transactions in Solana
6/6/2024 7:51:40 AM.
Discover how Solana blockchain leverages versioned transactions for enhanced scalability, ensuring seamless upgrades while maintaining backward compatibility. Explore the benefits for developers, offe
Convert an Embedded Resource into an XML File in WPF C#
6/6/2024 4:49:04 AM.
When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during ru
Dependency Injection Using Microsoft Unity Framework
6/5/2024 5:30:32 AM.
Explore Dependency Injection with Microsoft Unity Framework in the C# console app, emphasizing SOLID principles, IoC, and DI implementation for loosely coupled layers, enhancing testability.
Understanding Temporal Tables in SQL Server
6/4/2024 7:21:36 AM.
Temporal tables are a powerful feature introduced in SQL Server 2016 that provides a built-in mechanism for capturing and querying historical data. They enable you to keep track of all changes made to
Elevating Code Quality: Best Practices for Effective Code Reviews
6/2/2024 11:54:01 AM.
Elevating Code Quality" presents essential strategies for effective code reviews, fostering collaboration, and enhancing software reliability. Explore best practices in peer feedback, automated t
Understanding Git and GitHub: What's the Difference
6/2/2024 10:43:06 AM.
Explore the fundamental distinction between Git and GitHub in this comprehensive guide. Git, a distributed version control system, empowers developers to manage code locally. In contrast, GitHub serve
An Overview and Guide to Git
6/1/2024 5:00:32 AM.
It covers essential concepts, commands, and workflows, providing step-by-step instructions for beginners and best practices for advanced users. Learn how to manage your code efficiently and collabora
Export Div Content To PDF Using ITextSharp
5/31/2024 11:51:54 AM.
This guide demonstrates exporting HTML content within a div to PDF using iTextSharp in an ASP.NET application. Utilize the provided code to seamlessly convert div content to PDF documents, enhancing t
Convert Multiple Text Documents to a PDF File or to PDF Files
5/31/2024 11:50:49 AM.
The Article demonstrates how use iTextSharp PDF Library to convert the multiple text files into Single Combined PDF file and also into Individual PDF files with same GUI.
Difference Between "is" And "as" Operator in C#
5/31/2024 4:38:54 AM.
The is and as operators in C# have distinct behaviors and serve different purposes. The is operator is used for type checking, while the as operator is used for casting.
Convert Text File To PDF File And ViceVersa Using ItextSharp
5/30/2024 11:25:07 AM.
Learn how to seamlessly convert text files to PDF and vice versa using iTextSharp, a powerful library for document manipulation in C#. This tutorial covers step-by-step instructions for efficient file
The Curse of Dimensionality
5/29/2024 10:01:32 AM.
Discover SQL's System-Versioned Temporal Tables: Track data changes over time with timestamps, enabling historical analysis and efficient data management. Experience the power of time-traveling qu
System-Versioned Temporal Tables in SQL
5/29/2024 10:00:38 AM.
System-Versioned Temporal Tables in SQL enable tracking historical changes to data over time. SQL's temporal tables maintain a history of modifications, allowing users to query data as it existed
RESTful Day #3: Resolve Dependency of Dependencies Using Inversion of Control & Dependency Injection in ASP.Net Web APIs with Unity Container and Managed Extensibility Framework (MEF)
5/24/2024 8:58:56 AM.
Day 3 of RESTful learning dives into resolving dependencies of dependencies using IoC & DI in ASP.NET Web APIs. Employ Unity Container & MEF for seamless extension and management of components
RESTful Day 2: Inversion of Control Using Dependency Injection in Web API's Using Unity Container and Bootstrapper
5/24/2024 8:58:21 AM.
Day 2 of RESTful Learning explores the Inversion of Control through Dependency Injection in Web APIs. Utilize Unity Container and Bootstrapper for seamless management, enabling flexible and scalable d
Understanding Your Internet Speed Converting Mbps to MBps
5/24/2024 5:02:31 AM.
Understanding your internet speed is crucial for efficient online activities. This guide simplifies the conversion process from Mbps to MBps, helping you grasp the difference between megabits and mega
Understanding ToString() vs Convert.ToString() in C#
5/23/2024 10:30:46 AM.
In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these
Step By Step Creation Of Camera App In Microsoft PowerApps
5/21/2024 9:42:36 AM.
Creating a Camera app in Microsoft PowerApps involves adding a Camera control to capture images, and saving them to a data source like SharePoint, SQL Server, or OneDrive.
How to Create and Use Local NuGet Package in Dot Net
5/20/2024 11:02:15 AM.
NuGet is the package manager for dot net. Developers can create, share, and consume essential dot net libraries. NuGet client tools provide the ability to produce and consume these libraries as packag
3 Ways of Doing Optimistic Locking in .NET
5/16/2024 8:31:32 AM.
In this article we will touch base 3 ways of doing optimistic locking i.e. Using ADO.NET dataset, SQL Server Timestamp check and old / new value check.
Power Apps Git Verion Control: A new era of Collaboration
5/15/2024 11:20:58 AM.
Embrace seamless collaboration in Power Apps with Git version control. Manage app development efficiently, track changes, and foster teamwork for enhanced productivity and smoother deployments.
NancyFx - a light weight .NET framework
5/14/2024 11:01:51 AM.
NancyFx is a lightweight, low-ceremony framework for building HTTP-based services on .NET. It emphasizes simplicity and ease of use, featuring a minimal API for routing, handling requests, and generat
CRUD Operations Using the Generic Repository Pattern and Dependency Inversion Principle With IoC Container and DI in MVC
5/13/2024 11:17:00 AM.
Learn how to implement CRUD operations using the Generic Repository Pattern and Dependency Inversion Principle (DIP) in an MVC application. Explore the integration of an IoC Container for Dependency I
Create document Library in SharePoint 2013 Online
5/6/2024 11:23:09 AM.
Create document libraries in SharePoint 2013 Online for efficient document management. Customize folder structures, set permissions, and utilize metadata for easy organization and retrieval. Collabora
To Find Installed Version of .Net Framework Using CLR Version Tool
5/1/2024 11:14:47 AM.
Learn about Clrver.exe utility to identify .NET Framework versions. Use MSCorEE.dll presence in system directories. Visual Studio command prompt access. View installed .NET versions and CLR versions
Signing a Third Party Library With Ildasm and Ilasm
4/30/2024 9:55:22 AM.
Learn how to sign third-party libraries using ILDasm and ILasm, ensuring compatibility across .NET versions. Overcome version conflicts and ensure smooth integration of libraries into your projects.
Real-Time Text Display in Power Apps
4/30/2024 9:16:05 AM.
Explore the seamless integration of real-time text input updates with Power Apps. Discover how effortlessly display text input changes dynamically in labels, enhancing user interaction and engagement.
💠 Clean Architecture End To End In .NET 5
4/30/2024 9:06:48 AM.
Explore the implementation of Clean Architecture in ASP.NET 5.0, covering aspects like Entity Framework Code First Approach, Dependency Injection, AutoMapper for object-object mapping, JWT Authenticat
Enterprise Library New Version 6
4/29/2024 10:15:21 AM.
Enterprise Library Version 6 is a Microsoft .NET Framework library offering application blocks for logging, caching, data access, security, and more. It provides configurable components for common ent
Data Conversion in C#/.NET: List to DataTable and Vice Versa
4/29/2024 8:15:57 AM.
In C#/.NET, converting data from one format to another, such as from a list of custom objects to a DataTable, is a frequent requirement. In this article, we'll explore efficient techniques for con
S.O.L.I.D Principles - A Primer
4/29/2024 5:51:10 AM.
Explore the essential S.O.L.I.D principles in software development for robust, maintainable code. Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Invers
Access AssemblyInfo File and Get Product Informations
4/25/2024 10:13:01 AM.
Access the AssemblyInfo file to retrieve crucial product details such as version, title, and company. Utilize attributes like AssemblyVersion and AssemblyProduct to programmatically access metadata, f
Assembly in .NET 2.0
4/24/2024 1:22:55 PM.
In .NET 2.0, assemblies play a crucial role, containing code and metadata for applications. They support versioning, security, and deployment, with features like strong naming and the Global Assembly
Azure Blob Storage - SnapShot
4/24/2024 7:35:29 AM.
Utilize Azure Blob Storage SnapShot feature for efficient data backup and versioning. Snapshots enable point-in-time recovery, ensuring data integrity and facilitating disaster recovery strategies wit
Understanding .NET Client Profile
4/22/2024 8:22:31 AM.
.NET Client Profile, tailored for Windows Forms apps, offers speedy deployment with minimal footprint. Microsoft trims features like ASP.NET, MSBuild, enhancing package efficiency. Removed from .NET 4
Enhancements in Assemblies and Versioning in Visual Studio
4/22/2024 8:18:23 AM.
The article discusses a couple of features introduced for assembly and versioning in Visual Studio 2005 such as referencing assemblies, registering assemblies to GAC, digital signing and friend assemb
Conversion from Object to JSON by Json.NET
4/22/2024 8:15:13 AM.
Explore seamless conversion of objects to JSON using Json.NET, a popular library in C#. Learn efficient serialization techniques, data transformation strategies, and harness the power of .NET developm
Getting Started ✍️ With Angular 6 Using Angular CLI - Part 2️⃣
4/19/2024 10:28:54 AM.
Delve into Angular CLI essentials including version control, component, module, class, interface, and enum creation. Discover inline template & style commands for streamlined Angular development.
Deploying WPF Apps with Click-Once in Visual C# Express
4/19/2024 10:24:11 AM.
Deploy WPF apps seamlessly with ClickOnce in Microsoft Visual C# 2010 Express. Simplify distribution, enable automatic updates, and ensure easy installation, all within the .NET environment for effici
Code readability is enhanced with C# 10 top-level statements
4/16/2024 10:18:02 AM.
Ziggy Rafiq discusses tackling challenges in software component specification standards through the implementation of solutions such as adapters and bridges for standard mediation, abstraction and enc
Introduction to Web Service with Example in ASP.NET
4/11/2024 10:53:13 AM.
Explore creating web services in ASP.Net for code reuse across multiple applications. Understand web method attributes, platform independence, and date conversion functionalities. Examples demonstrate
Properly Setting Up .NET Core Projects
4/11/2024 6:20:44 AM.
Properly Setting Up .NET Core Projects involves configuring project structure, managing dependencies via NuGet packages, selecting appropriate SDK versions and target frameworks, and adhering to best
SOLID Principles in C# for Employee Management Example Mastering
4/11/2024 4:56:36 AM.
SOLID principles are a set of design principles that help developers create maintainable, scalable, and flexible software. In this article, we'll explore each of the SOLID principles: Single Respo
Source Control (3-1), DevOps And Different Products
4/10/2024 8:33:21 AM.
Source Control (3-1), DevOps And Different Products" explores the integration of source control systems like Git within the DevOps framework. It delves into practices such as Continuous Integrati
Source Control (1), MS Source Safe --- Stand Alone App
4/10/2024 5:12:50 AM.
This article discuss Source Safe, a stand alone app.
Best Practices for Creating ASP.NET Core REST API using OpenAPI
4/9/2024 5:44:39 PM.
Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
Understanding C# Data Types
4/8/2024 11:24:28 AM.
Understanding C# Data Types is essential for programming in C#. It involves grasping primitive types like integers, floating-point numbers, booleans, and characters, as well as complex types like stri
Hiding the Version Information of .Net Framework Due to Security Issue
4/3/2024 9:40:26 AM.
Learn how to address the "medium-level" security issue of information disclosure in .NET Framework. Follow steps to create a sample website, identify the problem of version information disc
Get Version of Your MVC Application
4/2/2024 10:30:24 AM.
This MVC application's HomeController retrieves the version information using C#'s Assembly class. It dynamically fetches and formats the MVC version, embedding it in HTML's bold tag to em
Dependency Inversion Principle (DIP)
4/2/2024 5:43:52 AM.
The Dependency Inversion Principle (DIP) advocates that high-level modules shouldn't rely on low-level modules. Instead, both should depend on abstractions, reducing coupling and facilitating futu
Boxing and Unboxing in C#
3/28/2024 10:40:41 AM.
In this article, we will learn Boxing and unboxing in C# allow conversion from value types to reference types and vice versa. This article explains boxing and unboxing in C#.
Enhance YAML Template Development in Azure DevOps for Productivity
3/27/2024 12:03:01 PM.
Enhance YAML template development in Azure DevOps with the YAML Template Editor to boost productivity. Simplify CI/CD pipelines, collaborate efficiently, and streamline automation processes for agile
Git and GitHub Integration in C# Apps with LibGit2Sharp
3/27/2024 8:46:30 AM.
Explore Git and GitHub integration in C# using the LibGit2Sharp NuGet package. Learn initialization, cloning, staging, committing, pushing, pulling, and conflict resolution. Ensure robust error handli
Azure DevOps: Resolve Merge Conflicts with Pull Request Extension
3/27/2024 8:21:22 AM.
In this article, we are going to learn how to resolve git merge conflicts within Azure DevOps by using an Azure DevOps Marketplace extension called Pull Request Merge Conflicts.
Convert Attachment to Base64 in Power Apps for Email Attachments
3/27/2024 8:05:57 AM.
Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment han
Azure Devops Project Configuration - Pipelines
3/26/2024 2:58:37 PM.
In this article, you’ll learn how to create a Azure DevOps Pipeline for CI and CD without using YAML Coding, source in Azure GIT repos, Configuring Build and release in Azure Web App Services.
Best Practices for Designing APIs in .NET
3/26/2024 11:55:39 AM.
This article provides a thorough overview of the fundamental principles, criteria, and concerns for creating APIs in.NET.
Learn Service Locator Pattern in C#
3/26/2024 11:29:22 AM.
This beginner’s tutorial explores the Service Locator Pattern in C#. Despite its decline in favor of Dependency Injection, it remains relevant for legacy systems. The tutorial covers its implementati
Azure Devops Project Configuration - Repos - Part Three
3/22/2024 9:01:23 AM.
In this article, you’ll learn how to create a Visual Studio project and how to push local environment code to Azure repos, as well as branching options for your master branch by using GIT source contr
Azure DevOps For Web Devlopment - Part Two - Azure Repos
3/22/2024 9:00:47 AM.
In this second part of the Azure DevOps for Web Development Series, we saw how to initialize a local git repository and push your code to Azure Repos to save work and manage code changes across your t
Azure DevOps For Web Development - Part One
3/22/2024 8:56:06 AM.
Discover the power of Azure DevOps for web development in this comprehensive series. Learn to streamline CI/CD pipelines, version control with Git, agile project management, and leverage Azure service
History and Evolution of Visual Studio and Supported .NET Versions
3/22/2024 7:18:14 AM.
This article gives a Brief overview of Visual Studio's evolution and its significance in software development. Description of each major version of Visual Studio from 1997 to 2022, highlighting ke
Visual Studio 2017 Overview And New Features
3/21/2024 6:48:14 AM.
Explore Visual Studio 2017's comprehensive IDE with enhanced features for efficient software development. Discover updates in debugging, coding, and collaboration, empowering developers with impro
Learning New Features And Installation Way Of Visual Studio
3/20/2024 11:40:24 AM.
Discover the latest features of Visual Studio 2017 and streamline your development process. Learn efficient installation methods to set up the IDE for your programming needs. Enhance your coding exper
Decorator Pattern in C# - 3 versions
3/20/2024 10:17:27 AM.
In this article, we will explore the versatile Decorator Pattern in C#, presented in 3 different versions. Enhance your understanding of object-oriented design with this powerful pattern, offering fle
First Look At ASP.NET Core 2.1 Preview One - Convert Existing .NET Core Application To .NET Core 2.1
3/19/2024 6:13:49 AM.
Finally, the .NET Core 2.1 preview is out for people to try. Two days ago, the .NET team announced the first preview of .NET Core 2.1. Let us see some of the highlights for this release.
Migrate From ASP.NET Core 2.x Web API To .Net Core 3.1
3/19/2024 5:32:47 AM.
In this article, you will learn to Upgrade your ASP.NET Core 2. x Web API to .NET Core 3.1 for enhanced performance, new features, and improved compatibility. Migrate seamlessly with Visual Studio too
Angular 18 is Getting Ready
3/19/2024 4:41:16 AM.
Angular 18 is getting ready and will be released very soon. Angular 18 promises both stability and innovation, aiming for a leading-edge development platform while ensuring backward compatibility.