惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
WordPress大学
WordPress大学
Recent Announcements
Recent Announcements
G
Google Developers Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
J
Java Code Geeks
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
量子位
A
About on SuperTechFans
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Class, Record and Struct in C#
Mirza Leka · 2026-06-16 · via DEV Community

Class, Record, and Struct serve as blueprints for creating new objects.

Classes

Classes are the foundational building blocks of Object-Oriented Programming (OOP).

Blueprint and instance

          // blueprint
          public class Person
          {
            public int ID { get; set; }
            public string Name { get; set; }
          }

          // instance
          var p = new Person { ID = 1, Name = "Mirza" }

Inspection

Printing the class instance in the console will just display it's name:

            var p1 = new Person { ID = 1, Name = "Mirza" };
            Console.WriteLine(p1); // Person

To print the actual, we'd need print each property explicitly:

            Console.WriteLine(p1.ID); // 1
            Console.WriteLine(p1.Name); // "Mirza"

Mutation

C# classes are mutable, meaning the originally set values can be altered:

            var p1 = new Person { ID = 1, Name = "Mirza" };
            Console.WriteLine(p1.Name); // "Mirza"

            p1.Name = "Armin";
            Console.WriteLine(p1.Name); // "Armin"

That said, this can be tweaked by changing the accessor the class property.

            public class Person
            {
                public int ID { get; set; }
                public string Name { get; init; } // <--
            }

This time around if we try to change the value of the Name property after initialization, the C# compiler will start to complain.

            var p1 = new Person { ID = 1, Name = "Mirza" };
            p1.Name = "Edis"; // ❌

The init accessor allows you to create properties that can only be assigned a value during object initialization.

Memory location

Classes are reference types and are allocated on the heap. If we create two distinct class objects and assign one to the other, both objects will point to the exact same reference in memory:

            var p1 = new Person { ID = 1, Name = "Mirza" };
            var p2 = new Person { ID = 2, Name = "Mirza" };

            p1 = p2;
            p1.Name = "Sead";

            Console.WriteLine(p1.Name); // Sead
            Console.WriteLine(p2.Name); // Sead

If we change a value in one of the objects, it will be reflected in both.

Equality

Two class instances (objects) aren't equal even if they share the same values:

            var p1 = new Person { ID = 1, Name = "Mirza" };
            var p2 = new Person { ID = 1, Name = "Mirza" };

            Console.WriteLine(p1 == p2); // False
            Console.WriteLine(p1.Equals(p2)); // False
            Console.WriteLine(ReferenceEquals(p1, p2)); // False

To compare the two, we'd need to check each property on each class and compare to the other:

            private static bool AreEqual(Person? x, Person? y)
            {
              // If both are the same memory instance (or both null), they are equal
              if (ReferenceEquals(x, y)) return true;

              // If only one is null, they are not equal
              if (x is null || y is null) return false;

              // If actual values are equal
              return x.ID == y.ID && x.Name == y.Name;
            }

In this case, the values of these two instances would indeed be equal.

            Console.WriteLine(AreEqual(p1, p2)); // True

Deconstruction

Classes support deconstruction through manual implementation of the Deconstruct method:

            public class Person
            {
                public int ID { get; set; }
                public string Name { get; set; }

                public void Deconstruct(out int id, out string name)
                {
                    id = ID;
                    name = Name;
                }
            }

Usage:

            var p = new Person { ID = 1, Name = "Mirza" };

            var (id, name) = p;

            Console.WriteLine(id); // 1
            Console.WriteLine(name); // "Mirza"

Structs

Structs are lightweight data structures designed for small, simple data values.

Blueprint and instance

            // blueprint
            public struct Person
            {
                public int ID { get; set; }
                public string Name { get; set; }
            }

            // instance
            var p = new Person { ID = 1, Name = "Mirza" };

Inspection

Just like classes, structs cannot print all contents at once:

            Console.WriteLine(p); // Person
            Console.WriteLine(p.ID); // 1
            Console.WriteLine(p.Name); // Mirza

Mutation

Structs also allow mutation.

            var p = new Person { ID = 1, Name = "Mirza" };
            Console.WriteLine(p.Name); // Mirza

            p.Name = "Armin";
            Console.WriteLine(p.Name); // Armin

Unless we forbid it using the init accessor.

            public struct Person
            {
                public int ID { get; set; }
                public string Name { get; init; } // <--
            }

Memory location

The structs are value types and are (usually) allocated on the stack.

            var p1 = new Person { ID = 1, Name = "Mirza" };
            var p2 = new Person { ID = 2, Name = "Mirza" };

            p1 = p2;
            p1.Name = "Sead";

            Console.WriteLine(p1.Name); // Sead
            Console.WriteLine(p2.Name); // Mirza

If we change a value in one of the objects, it won't reflect in both of them.

Equality

Structs are compared by value.

            var p1 = new Person { ID = 1, Name = "Mirza" };
            var p2 = new Person { ID = 1, Name = "Mirza" };

            Console.WriteLine(p1.Equals(p2)); // True

Deconstruction

Structs support deconstruction through manual implementation of the Deconstruct method:

            public struct Person
            {
                public int ID { get; set; }
                public string Name { get; set; }

                public readonly void Deconstruct(out int id, out string name)
                {
                    id = ID;
                    name = Name;
                }
            }

Usage:

            var p = new Person { ID = 1, Name = "Mirza" };

            var (id, name) = p;

            Console.WriteLine(id); // 1
            Console.WriteLine(name); // "Mirza"

Records

Records are a newer type optimized for data-centric modeling, immutability, and built-in value equality. It brings the best of classes and structs.

Blueprint and instance

            // blueprint
            public record Person (int ID, string Name);

            // instance
            var p = new Person(1, "Mirza");

The shorter syntax is the equivalent of doing:

            // blueprint
            public record Person
            {
                public int ID { get; init; }
                public string Name { get; init; }
            }

            // instance
            var p = new Person { ID = 1, Name = "Mirza" };

Inspection

Printing the record instance will print the record and its contents:

            var p = new Person(1, "Mirza");
            Console.WriteLine(p); // Person { ID = 1, Name = Mirza }

Mutation

Records are immutable by default:

            var p = new Person(1, "Mirza");
            p.Name = "Edis";  // ❌

            Console.WriteLine(p);

Unless the record is declared using the class-like syntax and we change the default accessor from init to set:

            public record Person
            {
                public int ID { get; set; } // <-- defaults to init
                public string Name { get; set; } // <-- defaults to init
            }

            var p = new Person { ID = 1, Name = "Mirza" };
            p.Name = "Edis"; // ✔️

            Console.WriteLine(p.Name); // Edis

Memory location

The records are reference types and are allocated on the heap.

            var p1 = new Person { ID = 1, Name = "Mirza" };
            var p2 = new Person { ID = 1, Name = "Mirza" };

            p1 = p2;
            p1.Name = "Sead";

            Console.WriteLine(p1.Name); // Sead
            Console.WriteLine(p2.Name); // Sead

If we change a value in one of the objects, it will be reflected in both.

Equality

Just like Structs, Records are compared by value.

            var p1 = new Person(1, "Mirza");
            var p2 = new Person(1, "Mirza");

            Console.WriteLine(p1 == p2); // True
            Console.WriteLine(p1.Equals(p2)); // True
            Console.WriteLine(Object.ReferenceEquals(p1, p2)); // False

Two objects share the same values, but do not point to the same reference in memory.

Deconstruction

Records support deconstruction out of the box.

            var p = new Person(1, "Mirza");

            var (id, name) = p;

            Console.WriteLine(id); // 1
            Console.WriteLine(name); // "Mirza"

Bonus: Record Structs

Aside from Class-based Records, we can also create Records that behave as Structs.

  • Value type equality
  • Allocated (usually) on the stack
  • Mutable by default
  • All other benefits of Records
            // blueprint
            public record struct Person(int ID, string Name);

Until next time 👋