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 T class
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sourav Kayal (5)
Mahesh Chand (5)
Mike Gold (4)
Sandeep Sharma (4)
Abhishek Dubey (4)
Ajay Kumar (3)
C# Curator (3)
Sangeetha S (2)
Matthew Cochran (2)
Jitendra Mesavaniya (2)
Tin Lam (2)
Jaimin Shethiya (2)
Manish Sharma (2)
Tural Suleymani (2)
Sanjeeb Lenka (2)
Rohatash Kumar (2)
Richa Garg (2)
Sahil Sharma (2)
Mayooran Navamany (1)
Ashish Bhatnagar (1)
Kautilya Utkarsh (1)
Ayush Gupta (1)
Vishal Joshi (1)
Alkesh Bijarniya (1)
Munib Butt (1)
Ashutosh Singh (1)
Prasoon (1)
Hari Lakkakula (1)
Abhishek Khandare (1)
Pankaj Kumar Choudhary (1)
Craig Breakspear (1)
Mukesh Kumar (1)
Nishant Mittal (1)
Sandeep Singh Shekhawat (1)
Govind Khandelwal (1)
Shees Abidi (1)
Pankaj Patel (1)
Mayur Gujrathi (1)
Jagannath Sethi (1)
Vijay Kumari (1)
Kirtan Patel (1)
Arindam Dawn (1)
Annathurai Subbaiah (1)
Naresh Beniwal (1)
Hammad Maqbool (1)
Ryan Alford (1)
Jignesh Trivedi (1)
Rafid Khalid Abdullah (1)
Rajesh VS (1)
Navin Prakash (1)
Usama Hafeez (1)
Senthilkumar (1)
Erika Ehrli (1)
Akhil Mittal (1)
Jay Smith (1)
Debendra Dash (1)
Pramod Singh (1)
Prakash Tripathi (1)
Abhishek Kumar Ravi (1)
Rikam Palkar (1)
Dipal Choksi (1)
Yogesh Jaiswal (1)
Elavarasan R (1)
Nitin Bhardwaj (1)
Akash Malik (1)
Dinesh Dugg (1)
Abubackkar Shithik (1)
John Godel (1)
Related resources for T class
No resource found
.NET 9 Features with Code Example
11/19/2024 4:42:05 AM.
Learn how abstraction simplifies complex systems by unifying interfaces, abstract classes, and dependency injection. Build modular, maintainable, and testable applications with this comprehensive guid
Create a Model with Database Table in .NET 8 using EF Core
10/28/2024 7:16:12 AM.
This article guides you through creating a data-driven application using .NET 8 and Entity Framework Core. You'll learn to define a model, configure a DbContext, set up a SQL Server connection str
Socket Class and ServerSocket Class in Java Networking
9/16/2024 6:21:43 AM.
TCP/IP sockets are the most reliable, bi-directional, stream protocols. It is possible to send arbitrary amounts of data using TCP/IP. Sockets are used for data communication using this protocol.
Fine-Tuning in Machine Learning
7/31/2024 3:43:44 AM.
This is one of the great techniques in machine learning, because it reused the pre-trained model and made it efficient for a new task with good accuracy. It also reduced the work of training a new mod
C# Abstract Class with Examples
7/17/2024 10:28:16 AM.
Explore the fundamentals of C# abstract classes through clear examples and detailed explanations. Learn how abstract classes facilitate code reusability and polymorphism in object-oriented programming
Interface Vs Abstract Class
7/10/2024 3:44:36 PM.
This article delves into the differences between interfaces and abstract classes in object-oriented programming. It explores their roles in languages like Java and C#, highlighting key concepts such a
Sealed Class VS Abstract Class with Real-time Cases
7/10/2024 12:33:19 AM.
This article explores the differences between sealed and abstract classes, providing real-time case studies to illustrate their use in software development. Learn how sealed classes restrict inheritan
Introduction to Model View Control (MVC) Pattern using C#
6/18/2024 8:42:40 AM.
The benefits of using the Model-View-Control (MVC) pattern in our development projects is that we can completely decouple our business and presentation application layers. Furthermore, we will have a
Hide Base Class Members in C# .NET with new Keyword
5/30/2024 7:05:09 AM.
In C# .NET, the new keyword allows derived classes to hide members of a base class. This technique, known as member hiding or shadowing, is used to define a new implementation for a member without ove
Reflecting Data in .NET Classes-Part III: From Windows Forms
5/27/2024 11:59:12 AM.
Reflecting Data in .NET Classes-Part III: From Windows Forms" explores advanced techniques for dynamically accessing and displaying data in .NET applications using Windows Forms. This part focuse
What is the Purpose of displayName Class Property in ReactJS?
5/20/2024 10:01:00 AM.
The `displayName` property in React improves debugging by naming components in React DevTools and error messages. It’s especially useful for components created with higher-order components (HOCs) or l
Reflecting Data In .NET Classes - Part IV - From Database Table
5/17/2024 10:36:57 AM.
In this segment of "Reflecting Data In .NET Classes," Part IV focuses on generating .NET classes from database tables. Utilizing reflection, it maps database schema to object-oriented struct
Using The Strategy Pattern In C#
5/14/2024 11:44:18 AM.
The Strategy Pattern in C# facilitates flexible behavior encapsulation by defining a family of algorithms, encapsulating each one, and making them interchangeable. This promotes code reuse and simplif
Abstract Class in .NET C#: Syntax, Usage and Example
5/13/2024 5:01:47 AM.
Abstract classes in .NET C# provide a blueprint for other classes to inherit from. They contain abstract methods that must be implemented by derived classes. Learn syntax, usage, and see examples to u
Exploring Interface and Abstract Class in C# Programming
4/30/2024 10:07:25 AM.
In C#, both interfaces and abstract classes are powerful tools for designing flexible and reusable code. Let's delve into the concepts of interface and abstract class, explore their differences, a
Learn about Static Class in C#
4/16/2024 4:43:10 AM.
This article explores the concept of static classes in C#, detailing their characteristics, usage, and limitations. It covers static class setup, static class features, static method usage, and depend
Abstract Class vs Interface
3/28/2024 10:36:35 AM.
Abstract classes provide a partial implementation with the option for subclasses to extend, while interfaces define a contract without implementation, allowing multiple inheritance. Abstract classes s
Difference Between Sealed Class & Abstract Class in C#
3/28/2024 10:16:55 AM.
In object-oriented programming (OOP) with C#, classes serve as the foundation for building robust and scalable applications. Two important concepts in class design are sealed classes and abstract clas
What is the Abstract Class in C#?
3/27/2024 6:45:19 AM.
The abstract class is a special privileged class in the C#, this will provide a blueprint for the derived classes with a setup of rules and instructions to be derived. The abstract class contains both
Test Initialize and Test Setup
3/5/2024 10:34:22 AM.
In this article, we will explain the uses of two very important attributes called TestInitialize and TestCleanup. Both attributes are useful at the time of unit test setup.
Limiting Class Instances in C# with Private Constructor
2/6/2024 5:29:53 AM.
Control class instances in C# by using a counter and private constructor. Explore limiting class instances in C# with a private constructor and a counter variable. Control the instantiation and set a
HttpClientHandler in C#
1/2/2024 4:46:07 AM.
Unlock the potential of C#'s HttpClient class with HttpClientHandler. Delve into its capabilities—handling cookies, managing proxies, configuring SSL/TLS, timeouts, and more—to optimize and contro
Choosing Between Abstract Classes and Interfaces in C#
12/2/2023 12:38:47 PM.
Making the Right Design Choice between Abstract Classes and Interfaces in C#.
Abstract Class and Abstract Methods
11/20/2023 10:41:10 AM.
In this article I will explain abstract class and abstract methods. An abstract class in C# is a class that is declared abstract. It cannot be instantiated on its own; rather, it is meant to serve as
Abstract Classes In C#
11/2/2023 11:56:15 AM.
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 abst
How to implement Multiple Inheritance in C#
10/11/2023 12:42:33 PM.
Learn how to implement multiple inheritance in C#. Inheritance is one of the key characteristics of an object oriented programming language.
Types Of Polymorphism
10/5/2023 11:33:21 AM.
In this article you will learn about Polymorphism and types of polymorphism.Polymorphism is one of the fundamental principles in object-oriented programming (OOP). It allows objects of different class
When to Use Interface And When To Use Abstract Class - Part One
10/3/2023 10:28:50 AM.
I hope this article helps you to explore all the possibilities of Abstract Class. My idea is to give readers an understanding of where to user Interface and Abstract class.
How To Use Abstract Class, Abstract Method, And Abstract Property In C#
9/20/2023 10:48:45 AM.
In this article, we look at what an abstract class is, its method and properties, and how to use them.
Class Library Creation in .NET
9/15/2023 9:40:09 AM.
This article explains how to create a Class Library and how to use a Class Library (Calculator.dll) in a Console Application.
Abstract Class, Interface and relation to Method Overriding and Method Hiding in C#
9/6/2023 11:40:37 AM.
In my this article I present a way to easily understand Abstract Types, Interfaces and their difference with Overriding and Hiding.
Abstract Class Vs Interface in C#
9/6/2023 11:14:03 AM.
n C#, both abstract classes and interfaces are used to define contracts for classes, ensuring that they adhere to a certain structure or behavior. However, they serve different purposes and have disti
The Object Class in .NET
9/5/2023 8:34:30 AM.
All the types in .NET are represented as objects and are derived from the Object class.
Interfaces In .NET
9/2/2023 8:32:04 AM.
In .NET, interfaces are a fundamental concept that allows you to define a contract that classes must adhere to. They are used to define a set of method signatures (and properties) that any class imple
What is Abstract Class in C#?
8/25/2023 7:04:49 AM.
Abstract classes serve as base classes for derived classes. They can't be instantiated directly and encompass both abstract and non-abstract members. They're useful when default functionality
Difference Between Abstract Class And Interface In Java
8/24/2023 10:07:53 AM.
Abstract Class and Interface are a core part of the Java programming language. Abstract class and interface are used in Java to archive Abstraction.
Important Interface in .NET: Work With IList Interface
8/17/2023 7:29:41 AM.
In this article we will learn the IList interface in the .NET class library.
Creating our own Generic Stack T Class like Inbuild Stack Class
8/17/2023 6:12:49 AM.
Basic intention of this article is to teach you how to build simple generic classes by our own.
Understanding Angular Injection Tokens
6/20/2023 6:53:30 AM.
Angular's dependency injection (DI) system manages dependencies in a modular, scalable manner. Injection Tokens are unique identifiers used by the system to resolve dependencies flexibly. They ena
C# Interface Based Development
6/8/2023 8:26:00 AM.
When trying to build maintainable, reusable, and flexible C# code, the object oriented nature of C# only gets us 50% of the way there. Programming to interfaces can provide us with the last 50%. Inte
Abstract Class And Abstract Method In C#
6/7/2023 10:00:16 AM.
In this article I have described abstraction in the C# language and a way to achieve dynamic polymorphism with the help of abstract method in the C# language.
Abstract Class In C#
6/6/2023 10:00:33 AM.
An abstract class in C# is a class that can't be instantiated. Here learn how to declare and implement abstract classes in C# applications.
Difference between abstract class and interface in C#
6/6/2023 9:06:03 AM.
In this article I have explained the difference between Abstract Class and Interface with some examples and some information about an Interface.
What is Abstract Keyword in java
4/22/2023 4:44:04 PM.
In this article, you will learn about What is abstract Keyword in Java
C# List Tutorial - Everything You Need To Learn About List In C#
4/2/2023 2:13:17 AM.
Learn how to use C# List and its methods and properties.
When To Use Abstract Class In C#.NET
2/21/2023 4:42:43 AM.
In this article, you will learn Realtime scenario when to use abstract class in C#.NET
Communicate with Serial Port in C#
2/11/2023 3:08:56 PM.
C# SerialPort class allows communication with a serial port in C#. Learn to write data via a serial port and receive data from a device connected to a serial port in C#.
CLR Stored Procedures in SQL Server
2/3/2023 7:57:46 AM.
In this article, we will learn about CLR Stored Procedures in SQL server.
C# In Practice - Building Tech Support App
12/1/2022 10:25:39 AM.
In this article, you will learn about simple app building for beginners in C#.
Important Interface in .NET: Work With ICollection Interface
11/17/2022 9:33:03 AM.
In this presentation we will understand the ICollection interface of the .NET class library.
Creating Strongly Typed Custom Collections in C#
11/17/2022 6:36:55 AM.
In this article, author shows you how to create and use strongly typed custom collections.
The Environment Class in C#
9/30/2022 7:11:13 AM.
In this article I will explain you about the Environment Class in C#.
Abstract Classes And Methods
8/23/2022 9:09:24 AM.
This is a detailed analysis of Abstract classes and methods in C# with some concrete examples.
Elegant JavaScript - How Do They Write It?
8/8/2022 10:31:41 PM.
In this article, you will learn about Elegant JavaScript.
Get Started With OOPS In Flutter 😎
7/13/2022 11:52:50 AM.
Here cover some interesting topics like inheritance, abstract classes and computed properties.
Object-Oriented Programming Simplified With C# And .Net 5
6/28/2022 4:40:35 PM.
This article is about the general concepts of Object-Oriented Programming with examples in c sharp programming language.
Implement Lazy Loading in C# Using Lazy<T> Class
4/1/2022 10:21:46 AM.
This articles exlains why lazy loading is useful and how it helps to develop a high-performance application.
Collections in C#: ArrayList and Arrays
1/14/2022 9:30:55 AM.
This article explains the Collection classes in .NET. This first part explains the ArrayList class, advantages, disadvantages and differences with Array.
OOPS Concepts and .NET Part 2: Inheritance, Abstraction, & Polymorphism
1/12/2022 11:36:01 AM.
The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The fi
C# and ASP.Net Interview Question and Answers
1/12/2022 10:47:24 AM.
In this article I will demonstrate C# and ASP.NET Interview Question and Answers.
Tutorial : Creating Visual Studio Add-Ins
1/7/2022 9:03:21 AM.
In this example we'll create an add-in that allows you to insert a copyright statement at the top of your code window.
How to Convert String Representation Number To Integer In C#
12/30/2021 4:36:07 AM.
C# per-define functions using string representation number to integer conversion.
Using Linked List in C#
11/25/2021 9:53:38 AM.
What we going to make is a linked list. Yeah I know there is a class which does the same as a linked list called ArrayList, but we (as a diehard C# programmer) want absolute control and knowledge of w
When To Use Abstract Class and Interface In Real Projects
11/18/2021 10:03:40 AM.
In this article, you will learn when to use an abstract class and an interface in real projects.
What Is The Difference Between Interface And Abstract Class And When To Use It
9/14/2021 1:15:31 PM.
Today, I am going to explain about abstract class and interface, When to use interface and abstract class and what is the difference between them. So, let us start.
Preparing for .NET Interviews - Part Seven (Abstract Class & Interface)
4/6/2021 10:04:47 AM.
This article presents the common questions asked in .NET interviews related to Abstract Class & Interface and explains the answers in an easy way.
Get All Intranet User Details in ASP.Net
3/26/2021 7:17:24 AM.
This article describes how to get the details of users present in a intranet. here i will get these info from Win32_UserAccount class.
Get the Details of Your Windows Operating System in ASP.Net
3/9/2021 7:45:15 AM.
This article describes how to get the details of your Windows Operating System. Here I will get the information from the Win32_OperatingSystem class.
Creating DLL (Class Library) in .NET Framework
2/10/2021 5:02:13 AM.
This article shows how to create a Class Library project and include it in a web application project.
HtmlGenericControl Class in ASP.Net
2/2/2021 6:59:57 AM.
This article defines the HtmlGenericControl class in ASP.Net.
Time Bomb: Set a Time to Shutdown Your Laptop
1/18/2021 9:39:47 AM.
This article provides a program that can shutdown your Laptop/Desktop at a specifeid time.
HttpContext Class in ASP.Net
1/8/2021 7:32:38 AM.
This article provides a slow introduction to the HttpContext class and its use for authentication.
Monitoring Remote Log Remotely using WMI in C# and .NET
12/2/2020 11:04:34 PM.
WMI (Windows Management Instrumentation) is a component of the Microsoft operating system that allows you to monitor virtually every piece of the system (either locally or remotely) as well as control
ADO .NET Class Hierarchy
10/30/2020 2:27:31 AM.
In this article I will explain about the ADO.NET class hierarchy provided by the .NET Runtime class library. These classes represent ADO.NET components.
Understanding the DOM Implementation
10/29/2020 5:46:37 AM.
In this article I will explain you about DOM implementation in C# and .NET.
Write Relational Data to an XML File
10/29/2020 2:38:19 AM.
This article shows you how you can write data from a database to an XML file using DataSet.
Purpose Of Abstract Class In Object Oriented Programming
6/20/2020 6:07:51 AM.
We have been using abstract class for a while. Let's understand why it was actually introduced.
Editable GridView Control in C# and .NET - Part-III Printing the GridView
5/21/2020 4:06:12 AM.
In our last two articles, we talked about how to create an editable GridView and how to make it persistent in XML.
How To: Printing Form Controls in C# and .NET
5/21/2020 2:56:36 AM.
The other day a user asked me how to print out a form. I suggested they use my Form Capture article which catches the bitmap that the form is in by using bit belting commands from the old windows SDK.
Windows Forms Printer Selection List
5/21/2020 2:35:06 AM.
In this example we will create a sample windows form containing a combo box which will list the printers installed on the machine on which the program runs. The default printer for the machine is set
Classes in JavaScript
4/5/2020 2:27:08 PM.
In this article you will learn how we can use classes in JavaScript.
A simple classification techniques on fruit dataset
1/23/2020 12:38:27 PM.
In this post, I will demonstrate you to solving a simple classification problem.
How to Create Class in TypeScript
10/15/2019 1:15:58 AM.
In this article, I have described how to create and use a class in TypeScript with an example.
Working Of List Intreface and LinkedList Class In Java Collection
9/19/2019 6:50:40 AM.
This article explains how the List Interface class and LinkedList class in Java collections work.
InetAddress and Datagram Class In Java
9/19/2019 5:39:51 AM.
In this article we discuss the InetAddress, DatagramSocket and DatagramPacket classes in Java.
How Container Handle Requests in Java
9/19/2019 5:01:42 AM.
A Container is a Java application that controls a servlet.
How Various Java Collection Classes Work
9/19/2019 12:46:57 AM.
In this article we discuss working of various classes in Java collection.
How ArrayList Class In Java Collections Are Used
9/19/2019 12:17:41 AM.
This article describes how the ArrayList class in Java Collections work.
Working With LinkList Class in Java
9/15/2019 11:42:02 PM.
In this article we describe use of the LinkList class in Java.
Working GradientPaint Class in Java
9/13/2019 6:45:01 AM.
In this article we are going to describe how to use the GradientPaint class to make a better UI.
WCF Using NetTcpBinding
9/13/2019 1:33:50 AM.
This article is about implementing WCF using NetTcpBinding. NetTcpBinding can be useful where IIS services are not needed.
Abstract Class in JAVA
9/10/2019 5:43:01 AM.
In this article you will learn about abstract classes in JAVA.
Kotlin - Class and Object
9/5/2019 10:16:14 AM.
Classes and objects are the center any object oriented programming language. this article, you will learn all about classes and objects in Kotlin. You will also learn various types of classes and clas
DataSet In C#
8/10/2019 10:11:56 PM.
C# DataSet class represents a data set in ADO.NET. ADO.NET. This tutorial explains what a DataSet is and how to use a DataSet to get data in-memory in a C# application.
Working With BitSet Class in Java
8/7/2019 4:16:51 AM.
In this article we are going to describe one of the important classes of the util package in Java. So we explain the use of the BitSet class test; also what is the need of the bit class.
C# SortedList Tutorial
7/30/2019 3:13:07 PM.
C# SortedList is a generic collection that stores key/value objects. This tutorial explains how to create a SortedList object and use SortedList in C#. Includes C# SortedList code examples.
HashSet In C#
7/30/2019 3:12:17 PM.
C# HashSet is a collection of unique elements. The .NET HashSet<T> class represents a hash set in C# and provides methods to add, remove, and find items, find subset, superset, union, and inters
How To Find An Item In C# List
6/3/2019 4:30:49 PM.
C# List Find. Check if an item is in the C# list or not. The Contains method checks if the specified item already exists in the C# List.
Abstract Class & Interface: Two Villains of Every Interview - Part 2
4/1/2019 4:36:48 AM.
This article explains the important key points of interfaces in C#. Learn what is interface, why we need an interface, how to define a C# interface.
Abstract Class & Interface: Two Villains of Every Interview - Part 1
4/1/2019 4:25:32 AM.
This article explains the important key points of Abstract Class in C#. Learn what is an Abstract Class, how to define an Abstract Class, and why do we need an Abstract Class.