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
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Alagunila Meganathan(5)
Ashish Bhatnagar(4)
Ajay Kumar(4)
David Mccarter(4)
Pankaj Kumar Choudhary(3)
Vithal Wadje(3)
Abhishek Jaiswal (3)
Darshan Adakane(2)
Aman Gupta(2)
Mahesh Chand(2)
Akhil Mittal(2)
Harpreet Singh(2)
Sandeep Sharma(2)
Abhimanyu K Vatsa(2)
Lokendra Singh(1)
Jitendra Mesavaniya(1)
Abhishek Khandare(1)
Mukesh Nailwal(1)
Tahir Ansari(1)
Gurpreet Arora(1)
Ayan Ansuman(1)
Navin Prakash(1)
Sameer Shukla(1)
Khushbu Saini(1)
Swati Chavan(1)
Shervin Cyril(1)
Surya S(1)
Gaurav Kumar(1)
Roshan Patil(1)
Neeraj Sharma(1)
Vijay Kumari(1)
Farhan Ahmed(1)
Satyaprakash Samantaray(1)
Kishor Bikram Oli(1)
Mani Gautam(1)
Rathrola Prem Kumar(1)
Khawar Islam(1)
Anoop Kumar Sharma(1)
Vignesh Mani(1)
Sourabh Somani(1)
Amit Choudhary(1)
Rahul Sahay(1)
Akash Malhotra(1)
Mohit Kumar(1)
Munesh Sharma(1)
Nitin (1)
Jignesh Trivedi(1)
Jasminder Singh(1)
Abhishek Yadav(1)
Devesh Omar(1)
Ramasagar Pulidindi(1)
Satendra Singh Bhati(1)
Sandeep Singh Shekhawat(1)
Sourav Kayal(1)
Pawan Pandey(1)
Shalini Dixit(1)
Supreet Tare(1)
Sourabh Mishra(1)
Vishal Gilbile(1)
Caonabo Ruiz(1)
Rajesh VS(1)
Alessandro Del Sole(1)
Ajay (1)
Akkiraju Ivaturi(1)
Senthilkumar (1)
Shivprasad (1)
Alok Pandey(1)
Dea Saddler(1)
Diptimaya Patra(1)
Daniel Clark(1)
Charles Petzold(1)
Sivaraman Dhamodaran(1)
Hiren Soni(1)
C# Curator(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
Explaning Wrapper Classes in Java
Sep 23, 2024.
This is essential for utilizing Java’s object-oriented features, such as collections. With autoboxing and unboxing, Java simplifies conversions between primitives and their corresponding wrapper classes, enhancing type safety and performance in data manipulation.
Understanding Sealed Classes in C#
Jul 22, 2024.
Sealed classes in C# are a vital concept in object-oriented programming, preventing other classes from inheriting them. This ensures a secure and stable class hierarchy by stopping further extension.
Exploring Record Classes in Java
Jun 28, 2024.
Discover the simplicity and power of record classes in Java with our comprehensive guide. Explore how Java's record classes, introduced in Java 14, streamline the creation of immutable data structures.
Understanding the Connections Between Classes in OOP
May 10, 2024.
Understanding how different tools in a toolbox are used to build something. This guide helps you see how these classes share information and work together to create software, making it easier to understand how programs are put together using Object-Oriented Programming (OOP).
What are Classes in Object Oriented Programming (OOP)
May 08, 2024.
Classes in OOP serve as blueprints for creating objects. They encapsulate data and behavior, promoting modularity and code reuse through inheritance and polymorphism, essential for building scalable and maintainable software systems.
What is a Sealed Classes in C#?
Mar 28, 2024.
In C#, the concept of inheritance plays a vital role in object-oriented programming (OOP). Developers often design class hierarchies to create a relationship between different types of objects. However, in some scenarios, you might want to restrict the inheritance of a particular class.
Learn about Sealed Classes in C#
Feb 14, 2024.
In C# programming, sealed classes offer control over inheritance but can be restrictive. This article delves into unlocking their potential using extension methods and the decorator pattern. These techniques enable extending sealed classes' functionality without compromising code integrity,
Deep Dive into Classes and Objects
Jan 10, 2024.
Welcome, fellow programmers! Here, we will dive into the world of classes and objects. Classes and objects are fundamental in programming. This post unravels the essence of classes, abstract data types, and the concept of objects.
What Are The Types of Classes in C#?
Dec 02, 2023.
types of classes in c#
Choosing Between Abstract Classes and Interfaces in C#
Dec 02, 2023.
Making the Right Design Choice between Abstract Classes and Interfaces in C#.
A Deep Dive into Static Classes in C#
Sep 25, 2023.
This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the fundamental characteristics of static classes, their unique features, and how they differ from regular classes. Readers will gain a comprehensive understanding of how static classes are used to encapsulate static members, such as methods, properties, and constants, within a C# application.
Static and Singleton Classes in C#
Sep 23, 2023.
Object-Oriented Programming (OOP) in C# is a way to organize code neatly. There are two types of classes: static and singleton. Static classes have functions that you can use without creating an object. They're great for simple tasks, but can cause issues if used too much. Singleton classes ensure there's only one instance of a class. They're useful for managing shared resources. Both have pros and cons. Static classes are simple and fast, but may create problems with too much shared data. Singleton classes are good for controlling resources but are more complex. Choose the one that fits your project's needs.
Sealed Classes in C#
Aug 28, 2023.
Delve into the significance of sealed classes in C# OOP. Uncover their role in defining code boundaries and inheritance. Gain insights into their benefits, optimizing security and performance. Master the art of using them judiciously for enhanced code predictability and maintainability.
Inner Classes in Java
Jun 16, 2023.
It is possible to nest a class definition within another class and treat the nested class like any other method of that class.
Code Quality - Formatting Classes In Microsoft .NET To Make Them Easy To Read And Modify
Mar 01, 2023.
In this article, you will learn how to format classes in Microsoft .NET To Make Them Easy To Read And Modify.
What Are The Differences Between Singleton Vs Static Classes In C#?
Feb 13, 2023.
In this article, you will learn what are the differences between singleton vs static classes in c#?
Record Classes - A Java 16 New Feature
Dec 30, 2022.
In this article, you will learn about record classes - a Java 16 new feature.
Sealed Classes - A Java 17 New Feature
Sep 05, 2022.
In this article, you will learn about new feature of Java 17- Sealed Classes.
Introduction of Classes in Flutter 3 😜
Jul 09, 2022.
In this article, we learn about classes in a flutter
Legacy Classes And Legacy Interface Of Collections API
Apr 28, 2022.
In this article, you will learn about legacy classes and legacy interface of collections api.
Sealed Classes In Java
Feb 28, 2022.
The article explains what are sealed classes in Java, Sealed Interfaces, and explains one of the most important preview features of Java 17 “Pattern Matching” and how it works well with Sealed classes.
Data Classes On ADO.NET
Mar 10, 2021.
In this article, you will learn about Data Classes on ADO.NET.
Generic Classes And Functions
Jan 22, 2021.
In this article, you will learn about the concept of generic classes and functions.
Partial Classes and Layouts in Blazor
Aug 28, 2020.
In this article, you will learn about Partial Classes and Layouts.
Let's Develop An Angular Application - Styling The Template Using CSS Validation Classes And ngModel Properties
May 29, 2020.
In this article, you will learn about styling the template using CSS Validation Classes and ngModel Properties.
Python Classes And Objects
Apr 06, 2020.
In this article, I will explain Python classes and objects.
Sealed Classes With When Statements Kotlin
Mar 19, 2020.
In this article, you will learn about sealedcClasses with when statements Kotlin.
Types Of Classes And Their Characteristics
Dec 07, 2019.
In this article, you will learn about the types of classes and their characteristics.
What is the difference between classes and objects in C#
Nov 19, 2019.
Learn the difference between objects and classes in C# and the relationship between a class and an object.
Improve Your Model Classes With OOP - Part Three - Serialization
Sep 01, 2019.
In this article, you will learn about improve your model classes with OOP - Serialization.
A Complete Java Classes Tutorial
Aug 29, 2019.
Java class is a basic concept of object-oriented programming. Java is an object-oriented programming language, so Everything in java is associated with java classes. In this article, we will learn about java classes and use Java classes with example programs.
Improve Your Model Classes With OOP - Part Two - Constructors, Interfaces And More
Aug 19, 2019.
In this article, you will learn how to improve your model classes with OOP.
Improve Your Model Classes With OOP - Part One - The Basics
Aug 04, 2019.
In this article, you will learn the tricks to improve your model classes with OOP.
When To Use Static Classes In C#
Apr 30, 2019.
The static modifier in C# declares a static member of a class. The static modifier can be used with classes, properties, methods, fields, operators, events, and constructors, but it cannot be used with indexers, finalizers, or types other than classes.
What are different types of classes in C#?
Nov 13, 2018.
In this article, we will understand different types of classes in c#. There are four different types of classes in c#.
Reuse The Model Classes Of Entity Data Model (.edmx) To Multiple Projects Using Class Library In ASP.NET Web API - Part Three
Apr 28, 2018.
A class library is useful when you want to share code between multiple programs. Class Library is a collection of reusable types including classes, interfaces and data types included in the .NET Framework to provide access to system functionality. It can be used for developing applications such as console applications, Windows GUI applications, ASP.NET applications, Windows and Web services, workflow-enabled applications, service-oriented applications using Windows Communication, XML Web services, etc.
Android Kotlin - Classes And Objects - Part Four
Mar 21, 2018.
In this article, we are going to learn about classes and objects in Kotlin with null values.
Understanding Classes In Kotlin
Dec 07, 2017.
In the above example, I have created a nested class ‘Nestedclass’ which has a data member ‘b’ and a member method show(),now the object of nested class can access member of nested class only.
Custom Collection Classes In C#
Apr 06, 2017.
This article presents an overview of custom collection classes in C#.
How To Organize Classes Using Namespaces
Mar 19, 2017.
How To Organize Classes Using Namespaces. In this article we will learn Two-Tiered Namespaces and Commonly used namespaces in .NET Framework.
Using Ionic Tabs Control Classes In Visual Studio 2015
Nov 27, 2016.
In this article, you will learn about how to add Ionic tabs control class in Ionic app, using Visual Studio 2015.
Build The Ionic App With Radio Button Classes In Visual Studio 2015
Nov 27, 2016.
In this article, you will learn how to add Ionic Radio button in the Ionic app, using Visual Studio 2015.
Using Range Classes In Ionic Blank App Using Visual Studio 2015
Nov 24, 2016.
In this article, you will learn about how to add Range classes in Ionic app, using Visual Studio 2015
Working With Ionic Toggle Classes In Ionic Blank App Using Visual Studio 2015
Nov 23, 2016.
In this article, we are going to see how to start using Toggle Classes in Ionic app, using Visual Studio 2015.
Working With Color Classes In Ionic Blank App Using Visual Studio 2015
Nov 12, 2016.
In this article, you will learn how to start using the Color classes in Ionic app, using Visual Studio 2015.
Comparing Structures And Classes In Swift Language
Jul 07, 2016.
In this article, you will see the comparison between the structures and classes in Swift Language.
Working With Built-In HTML Helper Classes In ASP.NET MVC
May 23, 2016.
In this Article, we will learn how to use Built-In HTML Helper Classes in ASP.NET MVC.
Move Domain Classes Configuration To Separate Classes
May 19, 2016.
In this article you will learn how to move Domain Classes Configuration to separate classes.
Brief Lesson About C# Classes And Objects
May 04, 2016.
In this article you will learn about C# Classes And Objects.
How To Paste JSON As Classes Or XML As Classes in Visual Studio
Apr 13, 2016.
In this article, I will explain you how to paste JSON or XML as classes in Visual Studio.
T4 Templates To Generate Classes From XML
Jan 07, 2016.
In this article you will learn about T4 Templates to generate classes from XML.
Abstract Classes In C#
Dec 08, 2015.
In this article you will learn about abstract classes in C#.
Understanding Sealed Keyword For Classes And Methods In C#
Sep 03, 2015.
In this article we will implement sealed keyword for classes and methods in C#.
Overview of Pseudo Classes in CSS
Aug 18, 2015.
In this article I will explain how to use pseudo classes and pseudo elements.
Abstract Classes In C#
May 17, 2015.
This article explains abstract classes in C#. An abstract class is a special type of class that cannot be instantiated and acts as a base class for other classes. Abstract class members marked as abstract must be implemented by derived classes.
Input/Output Classes in C#
Mar 12, 2015.
This article explains the input/output classes available in C#.
POCO Classes in Entity FrameWork
Mar 02, 2015.
In this article, you will learn about POCO classes in Entity Framework.
Generic Classes in C#
Feb 21, 2015.
In this article we will learn about the Generic Classes in C#.
Difference Between Abstract Classes and Interfaces
Jan 28, 2015.
In this article we will learn about the differences between abstract classes and interfaces.
Abstract Classes in C#
Jan 10, 2015.
In this article, we will learn about the basics of an abstract class.
Abstract Classes In Depth
Jan 06, 2015.
In this article you will learn about abstract classes.
Generic Classes Using Generic Type Parameter
Nov 24, 2014.
In this article, we will discuss the concept of the generic classes in C#, including what exactly this concept of generics means.
StreamReader And StreamWriter Classes In C#
Jul 18, 2014.
Learn about StreamReader and StreamWriter classes in C#. These classes are essential for reading from and writing to files efficiently. Understand their usage for file handling tasks, including reading text files line by line or writing data to files.
Diving Into OOP (Day 4) : Polymorphism and Inheritance (All About Abstract Classes in C#)
Jun 02, 2014.
In this article of the series "Diving Into OOP", we’ll discuss the hottest and most exciting topic of OOP in C#, Abstract Classes.
Static Classes in C#
May 31, 2014.
In this article we will learn about static classes in C#.
Getting Started With Sealed Classes in C#
May 26, 2014.
In this article we will learn about one of the most reusable object oriented features of C#, Sealed classes. We will learn about Sealed classes from the basics because I have written this article focusing on the students and the beginners.
Basics Of Generic Classes In C#
May 01, 2014.
This article explains how to use a Generic class and why we need to use it.
Sealed Classes and Methods in C#
Apr 07, 2014.
This article explains sealed classes, one of the most important advanced features of the .Net Framework, with its respective functionality and processes and how it all works in our program code.
Abstract Classes in C#
Apr 06, 2014.
This article will explain one of the most important concepts of object oriented languages (for C#), abstract classes.
Abstract Classes in C#
Apr 05, 2014.
This article exlains one of the most important concepts of object oriented languages, abstract classes (in reference to C#).
Various Syntaxes For Implementing Classes in JavaScript
Mar 25, 2014.
In this article we will learn about various syntaxes for defining a class in JavaScript.
Types of Classes in C#
Feb 25, 2014.
In this article we will learn about various types of classes in C#.
Wrapper Classes in Java
Nov 12, 2013.
This article explains the wrapper classes in Java.
Partial Classes In C# with Real Example
Oct 23, 2013.
C# Partial Class. Partial classes were introduced in C# 2. A C# Partial class can reside in multiple cs files with the same name. C# partial classes code examples.
Design Pattern For Beginners - Part 11: Implement Decouple Classes in Application
Sep 18, 2013.
Today let’s start with a very common and easy design pattern called Implement Decouple Classes in applications.
Partial Classes in C#
Sep 06, 2013.
This article explains partial classes in C# and .NET.
Generic Collection Classes in C#
Sep 02, 2013.
The collections the System.Collections.Generic namespace are type safe and this article explains them.
Using Multiple Main Classes in NetBeans
Jul 09, 2013.
This article provides an idea of how to implement multiple main classes in the NetBeans IDE.
URL and URLConnection Classes In Java
Jun 11, 2013.
In this article, we discuss the URL and URLConnection classes in Java.
How Various Java Collection Classes Work
Jun 03, 2013.
In this article we discuss working of various classes in Java collection.
Unable to See the Model Classes While Adding a New Domain Service
May 01, 2013.
Ever came across a situation where you want to add a new domain service class to your RIA Service solution & you don’t see the class names from your model?
Abstract Classes in C#
Apr 19, 2013.
This article explains Abstract Classes in C#. Abstract Class is a type of class for which we cannot create an instance of the class.
Implementing Generics Classes and Functions In C# Programs
Feb 13, 2013.
Today we'll have a look at how we can implements generics in our program and how we can make our functions, code more robust and less prone to changes in program code.
Leveraging Base Classes in VB.NET
Nov 10, 2012.
This article shows you how to leverage the power of VB.Net Financial base class library using C#. The .Net unify class architecture model allows .Net languages to leverage class libraries implemented in other class libraries.
Abstract Classes in VB.NET
Nov 10, 2012.
This is a detailed analysis of abstract classes and methods in VB.NET with some concrete examples.
Create and Export Custom Classes as Reusable Templates in VB .NET
Nov 10, 2012.
This article shows how to create a custom class and export it as a reusable template in Visual Basic.
GDI+ Namespaces and Classes in VB.NET
Nov 08, 2012.
In this article I will explain about GDI+ Namespaces and Classes in .NET.
Singleton Vs Static Classes in C#
Aug 06, 2012.
Why do you use a Singleton class if a Static class serves the purpose What is the difference between Singleton and Static classes and when do you use each one in your program?
Custom Collection Classes in C#
Feb 24, 2012.
Learn how to create a custom collection class in C#, utilizing the Customer class with attributes. Implement and manage customer data with CollectionBase, including methods for adding, removing, and accessing customer instances. Explore auto-defined properties and List collections in C#.
4 Real Time Use of Partial Classes and Partial Method
Jan 13, 2012.
Learn how to leverage partial classes and partial methods in real-time applications with C#. Explore their use for modular design, event-driven programming, and code organization. Discover how they enhance extensibility and simplify code maintenance in software development.
Working with the SqlConnection and SqlCommand Classes in ADO.NET
Dec 29, 2011.
Here, you will learn C# SqlConnection and C# SqlCommand in ADO.NET with simple examples.
Working With Forms Classes in F#
Aug 03, 2011.
This article is a demonstration regarding Forms classes in F#. Take a quick review to learn.
Silverlight 4 LINQ to SQL Classes in VS 2010
Jul 14, 2011.
LINQ to SQL is an ORM (stands for Object Relational Mapper/Mapping), which provides a data access layer for the application.
Anonymous Typed Classes in C#
Jun 21, 2011.
In this quick article, you will take a look at basics of anonymous typed classes in C#.
Partial Classes In C#
Jun 20, 2011.
In this quick article you will take a look at Partial Classes in C#.
Basics Of Creating And Using Classes In C#
May 23, 2011.
This chapter is the first of a series that will introduce you to how classes are created and used in C#. It covers the basics of creating and using classes.
Custom Control Classes and Dependency Properties in Silverlight for Windows Phone 7
Dec 10, 2010.
You’re creating a custom control class, and that class defines new properties, and if you want those properties to be set through styles, or you want those properties to be set through data bindings.
Introduction to Classes and Objects
Oct 22, 2010.
A brief introduction to classes and objects.
Get Property And Method Name Of WMI Classes Programmatically In C#
Sep 03, 2010.
This article shows how you can get property name and method name programmatically instead of writing explicitly.
Security Classes in .NET
Mar 23, 2010.
In this article I will explain you about Security Classes in .NET.
1
-
100
of
168
<<
1
2
>>
Search
OUR TRAINING