# ฟีเจอร์ขั้นสูงของ C# (.NET) > Pattern matching, records, tuples, deconstruction, local functions, พารามิเตอร์ ref/out - 20 คำถามสัมภาษณ์ - Mid-Level - [คำถามสัมภาษณ์: .NET](https://sharpskill.dev/th/technologies/dotnet/interview-questions.md) ## 1. record ใน C# คืออะไร? **คำตอบ** record คือ reference type ที่ไม่เปลี่ยนแปลงซึ่งเปิดตัวใน C# 9 โดยให้ไวยากรณ์ที่กระชับสำหรับการสร้างชนิดข้อมูลที่มีความเท่ากันแบบอิงค่า ต่างจาก class ทั่วไปที่ใช้ความเท่ากันแบบอ้างอิง record จะเปรียบเทียบค่าของ property ใช้ record สำหรับ DTO, value object และชนิดที่ไม่เปลี่ยนแปลงซึ่งต้องการความเท่ากันแบบอิงค่า ## 2. ความแตกต่างระหว่าง out และ ref ใน C# คืออะไร? **คำตอบ** พารามิเตอร์ out ไม่ต้องการการกำหนดค่าเริ่มต้นก่อนเรียก method แต่ต้องถูกกำหนดค่าภายใน method ในขณะที่ ref ต้องการการกำหนดค่าเริ่มต้นก่อนเรียกและอาจถูกแก้ไขหรือไม่ก็ได้ภายใน method ทั้งสองส่งผ่านโดยอ้างอิงแต่ out ถูกปรับให้เหมาะกับการคืนค่าหลายค่าในขณะที่ ref ใช้สำหรับแก้ไขตัวแปรที่มีอยู่แล้ว ใช้ out สำหรับ method ที่คืนค่าหลายผลลัพธ์และ ref เมื่อจำเป็นต้องแก้ไขค่าที่มีอยู่แล้ว ## 3. pattern matching ใน C# คืออะไร? **คำตอบ** pattern matching เป็นฟีเจอร์ที่อนุญาตให้ทดสอบค่ากับ pattern ต่าง ๆ (ชนิด ค่า property) และเรียกใช้โค้ดตาม pattern ที่ตรงกัน เปิดตัวใน C# 7 และปรับปรุงในเวอร์ชันถัดมา ช่วยลดความซับซ้อนของโครงสร้างเงื่อนไขด้วย switch expression, property pattern และ type pattern ใช้ pattern matching เพื่อแทนที่ลูกโซ่ if-else ที่ซับซ้อนและเพิ่มความอ่านง่ายของโค้ด ## มีอีก 17 คำถาม - tuple ใน C# คืออะไรและประกาศอย่างไร? - local function ใน C# คืออะไร? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ .NET อื่นๆ - [พื้นฐาน C#](https://sharpskill.dev/th/technologies/dotnet/interview-questions/csharp-basics.md): 25 คำถาม, Junior - [LINQ & Delegates](https://sharpskill.dev/th/technologies/dotnet/interview-questions/csharp-linq-delegates.md): 20 คำถาม, Junior - [พื้นฐานสำคัญของภาษา C#](https://sharpskill.dev/th/technologies/dotnet/interview-questions/csharp-language-essentials.md): 15 คำถาม, Junior - [พื้นฐาน ASP.NET Core](https://sharpskill.dev/th/technologies/dotnet/interview-questions/aspnet-core-fundamentals.md): 18 คำถาม, Junior - [วงจรชีวิตของ request ใน ASP.NET Core](https://sharpskill.dev/th/technologies/dotnet/interview-questions/aspnet-core-request-lifecycle.md): 20 คำถาม, Junior - [Configuration & Settings](https://sharpskill.dev/th/technologies/dotnet/interview-questions/configuration-settings.md): 20 คำถาม, Junior - [วงจรชีวิตของแอปพลิเคชัน](https://sharpskill.dev/th/technologies/dotnet/interview-questions/application-lifecycle.md): 20 คำถาม, Junior - [Dependency Injection](https://sharpskill.dev/th/technologies/dotnet/interview-questions/dependency-injection.md): 24 คำถาม, Mid-Level - [Entity Framework Core](https://sharpskill.dev/th/technologies/dotnet/interview-questions/entity-framework-core.md): 25 คำถาม, Mid-Level - [Minimal APIs](https://sharpskill.dev/th/technologies/dotnet/interview-questions/minimal-apis.md): 18 คำถาม, Mid-Level - [การพัฒนา Web API](https://sharpskill.dev/th/technologies/dotnet/interview-questions/web-api-development.md): 22 คำถาม, Mid-Level - [Async ใน ASP.NET Core](https://sharpskill.dev/th/technologies/dotnet/interview-questions/async-aspnet-core.md): 20 คำถาม, Mid-Level - [Authentication & Authorization](https://sharpskill.dev/th/technologies/dotnet/interview-questions/authentication-authorization.md): 18 คำถาม, Mid-Level - [HttpClient & Networking](https://sharpskill.dev/th/technologies/dotnet/interview-questions/httpclient-networking.md): 20 คำถาม, Mid-Level - [การซีเรียลไลซ์ JSON](https://sharpskill.dev/th/technologies/dotnet/interview-questions/json-serialization.md): 20 คำถาม, Mid-Level - [Entity Framework Core ขั้นสูง](https://sharpskill.dev/th/technologies/dotnet/interview-questions/ef-core-advanced.md): 25 คำถาม, Mid-Level - [Clean Architecture](https://sharpskill.dev/th/technologies/dotnet/interview-questions/clean-architecture.md): 20 คำถาม, Mid-Level - [Logging, Monitoring & Observability](https://sharpskill.dev/th/technologies/dotnet/interview-questions/logging-monitoring.md): 22 คำถาม, Mid-Level - [Unit Testing และ xUnit](https://sharpskill.dev/th/technologies/dotnet/interview-questions/unit-testing-xunit.md): 20 คำถาม, Mid-Level - [การทดสอบแบบบูรณาการ](https://sharpskill.dev/th/technologies/dotnet/interview-questions/integration-testing.md): 18 คำถาม, Mid-Level - [Docker & Containerization](https://sharpskill.dev/th/technologies/dotnet/interview-questions/docker-containerization.md): 16 คำถาม, Mid-Level - [การจัดการแพ็กเกจ NuGet](https://sharpskill.dev/th/technologies/dotnet/interview-questions/nuget-package-management.md): 16 คำถาม, Mid-Level - [Memory Management & GC](https://sharpskill.dev/th/technologies/dotnet/interview-questions/memory-management-gc.md): 22 คำถาม, Senior - [การเขียนโปรแกรมแบบรีแอกทีฟ](https://sharpskill.dev/th/technologies/dotnet/interview-questions/reactive-programming.md): 24 คำถาม, Senior - [Async/await และรูปแบบ](https://sharpskill.dev/th/technologies/dotnet/interview-questions/async-await-patterns.md): 26 คำถาม, Senior - [.NET Design Patterns](https://sharpskill.dev/th/technologies/dotnet/interview-questions/dotnet-design-patterns.md): 24 คำถาม, Senior - [การเพิ่มประสิทธิภาพการทำงาน](https://sharpskill.dev/th/technologies/dotnet/interview-questions/performance-optimization.md): 22 คำถาม, Senior - [ความปลอดภัยและ Best Practices](https://sharpskill.dev/th/technologies/dotnet/interview-questions/security-best-practices.md): 24 คำถาม, Senior - [SignalR และเรียลไทม์](https://sharpskill.dev/th/technologies/dotnet/interview-questions/signalr-realtime.md): 22 คำถาม, Senior - [สถาปัตยกรรม Microservices](https://sharpskill.dev/th/technologies/dotnet/interview-questions/microservices-architecture.md): 25 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/dotnet/interview-questions/csharp-advanced-features