This course introduces learners to the fundamentals of programming with C#. You’ll gain hands-on experience writing, compiling, and executing C# code while exploring essential concepts like variables, data types, operators, control flow, and functions. By the end, you’ll have a strong foundation to build more complex applications and the confidence to begin solving real programming challenges.
抓住节省的机会!购买 Coursera Plus 3 个月课程可享受40% 的折扣,并可完全访问数千门课程。

Advanced C# Language Features & Object-Oriented Programming
本课程是 Beginners Guide to C# Fundamentals 专业证书 的一部分

位教师: Microsoft
包含在 中
了解更多
您将获得的技能
要了解的详细信息

添加到您的领英档案
January 2026
24 项作业
了解顶级公司的员工如何掌握热门技能

积累 Design and Product 领域的专业知识
- 向行业专家学习新概念
- 获得对主题或工具的基础理解
- 通过实践项目培养工作相关技能
- 通过 Microsoft 获得可共享的职业证书

该课程共有5个模块
In this module, you will expand your programming capabilities by mastering advanced control flow structures that enable you to write more sophisticated and efficient programs. You'll learn to use various types of loops for repetitive tasks, apply jump statements to control program execution precisely, and create complex nested structures for handling multi-dimensional problems. Additionally, you'll discover how to organize your code into reusable methods, making your programs more modular, maintainable, and professional. By the end of this module, you'll be able to solve complex programming challenges that require iterative processing and structured code organization.
涵盖的内容
12个视频5篇阅读材料5个作业8个非评分实验室
12个视频• 总计63分钟
- The Power of Automation Through Loops• 3分钟
- Building Loops for Real-World Problems – Part 1• 6分钟
- Building Loops for Real-World Problems – Part 2• 7分钟
- Precise Control in Critical Systems• 3分钟
- Implementing Flow Control with Jump Statements – Part 1• 6分钟
- Implementing Flow Control with Jump Statements – Part 2• 7分钟
- Solving Complex Problems with Nested Structures• 3分钟
- Building Multi-Level Logic Systems – Part 1• 7分钟
- Building Multi-Level Logic Systems – Part 2• 5分钟
- Code Reusability in Enterprise Applications• 4分钟
- Creating Professional Method Libraries – Part 1• 6分钟
- Creating Professional Method Libraries – Part 2• 6分钟
5篇阅读材料• 总计130分钟
- Mastering C# Loop Structures• 30分钟
- Course Syllabus• 10分钟
- Jump Statements for Execution Control• 30分钟
- Designing Complex Control Structures• 30分钟
- Method Design and Implementation Principles• 30分钟
5个作业• 总计90分钟
- Practice Quiz: Loop Structures and Application• 15分钟
- Practice Quiz: Jump Statements and Control Flow• 15分钟
- Practice Quiz: Nested Control Structures• 15分钟
- Practice Quiz: Methods and Function Design• 15分钟
- Graded Quiz: Advanced Control Flow and Methods• 30分钟
8个非评分实验室• 总计480分钟
- Basic Loop Implementation• 60分钟
- Number Pattern Generator• 60分钟
- Flow Control Scenarios• 60分钟
- Interactive Data Processor• 60分钟
- Pattern Creation with Nested Loops• 60分钟
- Grade Analysis System• 60分钟
- Method Creation Exercises• 60分钟
- Mathematical Utility Methods• 60分钟
In this module, you will transition from procedural programming to the powerful paradigm of object-oriented programming (OOP). You'll discover how to model real-world entities as objects and learn the fundamental principles that make OOP such a dominant approach in modern software development. Starting with the core concepts of classes and objects, you'll learn to create your own data types and understand the relationship between blueprints (classes) and instances (objects). You'll then master encapsulation, one of the four pillars of OOP, learning how to protect data integrity and create secure, maintainable class designs. Finally, you'll develop professional debugging skills specifically for object-oriented applications while learning to leverage AI assistance for code review and quality improvement. By the end of this module, you'll be thinking like an object-oriented programmer and creating well-designed, secure classes that form the foundation for robust applications.
涵盖的内容
9个视频5篇阅读材料6个作业4个非评分实验室1个插件
9个视频• 总计45分钟
- Introduction: Mastering Object-Oriented Programming in C#• 2分钟
- Fundamental Concepts of Objects and Classes• 5分钟
- Theoretical Understanding of OOP Principles• 6分钟
- Creating Classes and Objects• 6分钟
- Implementing Classes and Objects• 3分钟
- Protecting Critical Data in Banking Systems• 5分钟
- Implementing Secure Data Access• 7分钟
- AI-Powered Debugging in Modern Development• 4分钟
- Debugging Objects with AI Assistance• 8分钟
5篇阅读材料• 总计90分钟
- Fundamentals of OOP: Objects, Classes, Encapsulation, and Abstraction in C#• 10分钟
- Implementation of Classes and Objects• 10分钟
- You Try It! Implementing Classes and Objects - Answer Key• 10分钟
- Encapsulation Principles and Implementation• 30分钟
- Advanced OOP Debugging Techniques and AI Integration• 30分钟
6个作业• 总计125分钟
- Practice Quiz: Objects and Classes• 15分钟
- You Try It! Implementing Classes and Objects• 30分钟
- Practice Quiz: Implementation of Classes and Objects• 20分钟
- Practice Quiz: Encapsulation and Data Protection• 15分钟
- Practice Quiz: OOP Debugging and AI-Assisted Development• 15分钟
- Graded Quiz: Object-Oriented Programming Foundations• 30分钟
4个非评分实验室• 总计240分钟
- Property Implementation• 60分钟
- Secure Account Management System• 60分钟
- Object State Debugging• 60分钟
- Comprehensive OOP Code Review and Debugging• 60分钟
1个插件• 总计15分钟
- Guided Lab: Implementing Classes and Objects• 15分钟
In this module, you will master two of the most powerful concepts in object-oriented programming that enable you to create flexible, maintainable, and extensible software systems. You'll learn how inheritance allows you to build upon existing code by creating parent-child relationships between classes, promoting code reuse and establishing clear hierarchical structures that mirror real-world relationships. You'll then explore polymorphism, which enables your programs to work with objects of different types through a common interface, creating systems that can be easily extended without modifying existing code. Additionally, you'll discover how abstraction through interfaces and abstract classes helps you design robust contracts that ensure consistent behavior while hiding implementation complexity. These advanced object-oriented concepts are essential for building enterprise-level applications that can evolve and scale over time. By the end of this module, you'll be able to design sophisticated class hierarchies, implement polymorphic behavior that processes different object types uniformly, and create flexible architectures using abstraction principles that support long-term software maintainability and extensibility.
涵盖的内容
9个视频5篇阅读材料6个作业4个非评分实验室1个插件
9个视频• 总计39分钟
- Inheritance• 3分钟
- Polymorphism• 4分钟
- Coding Inheritance in C#• 4分钟
- Coding Polymorphism in C#• 4分钟
- Inheritance and Polymorphism in C#• 4分钟
- Polymorphism in Action – Media Player Systems• 3分钟
- Building Polymorphic Class Hierarchies• 8分钟
- Contracts and Abstractions in Enterprise Software• 3分钟
- Implementing Contracts and Abstract Designs• 6分钟
5篇阅读材料• 总计85分钟
- Inheritance and Polymorphism• 5分钟
- Practical Implementation of Inheritance and Polymorphism• 10分钟
- You Try It! Inheritance and Polymorphism in C# - Answer Key• 10分钟
- Advanced Polymorphism Through Virtual Methods• 30分钟
- Mastering Abstraction Through Interfaces and Abstract Classes• 30分钟
6个作业• 总计120分钟
- Practice Quiz: Inheritance and Polymorphism• 15分钟
- You Try It! Inheritance and Polymorphism in C#• 30分钟
- Practice Quiz: Practical Implementation of Inheritance and Polymorphism• 15分钟
- Practice Quiz: Polymorphism and Virtual Methods• 15分钟
- Practice Quiz: Abstraction and Design Contracts• 15分钟
- Graded Quiz: Inheritance and Polymorphism• 30分钟
4个非评分实验室• 总计240分钟
- Virtual Method Implementation• 60分钟
- Employee Management System with Polymorphism• 60分钟
- Interface and Abstract Class Implementation• 60分钟
- Plugin Architecture with Abstraction• 60分钟
1个插件• 总计15分钟
- Guided Lab: Inheritance and Polymorphism in C#• 15分钟
In this module, you will advance from implementing object-oriented programming concepts to mastering the sophisticated design principles and modern development practices that define professional software architecture. You'll learn advanced abstraction techniques that enable you to create flexible, maintainable systems by hiding implementation complexity behind well-designed interfaces and contracts. You'll explore established design patterns that provide proven solutions to common programming challenges, helping you recognize and implement architectural approaches used successfully across the software industry. Additionally, you'll discover how artificial intelligence is transforming professional development workflows, particularly in documentation generation and code quality analysis. These skills represent the intersection of traditional software engineering excellence and cutting-edge AI-enhanced development practices. By the end of this module, you'll be able to design sophisticated abstractions that support scalable architectures, recognize and apply industry-standard design patterns, and leverage AI assistance to generate comprehensive documentation and improve code quality—positioning you at the forefront of modern professional software development.
涵盖的内容
7个视频5篇阅读材料6个作业4个非评分实验室1个插件
7个视频• 总计43分钟
- Building Scalable Systems Through Smart Abstraction• 4分钟
- Designing Professional Interface Architectures• 9分钟
- Design Patterns• 5分钟
- Identifying Design Patterns• 8分钟
- AI-Powered Documentation in Professional Development• 4分钟
- Creating Professional Documentation with AI Assistance• 10分钟
- Debugging C# Code With Microsoft Copilot• 3分钟
5篇阅读材料• 总计85分钟
- Advanced Abstraction Design Principles• 30分钟
- Introduction to Common Software Design Patterns• 10分钟
- Answer Key: Factory and Observer Design Patterns• 10分钟
- Professional Documentation Standards and AI Integration• 30分钟
- Debugging C# Code With Microsoft Copilot• 5分钟
6个作业• 总计135分钟
- Practice Quiz: Advanced Abstraction Design• 15分钟
- Activity: Recognizing Design Patterns• 30分钟
- Practice Quiz: Recognizing Design Patterns• 15分钟
- Practice Quiz: AI-Enhanced Documentation Practices• 15分钟
- You Try It! Practical Debugging With Copilot• 30分钟
- Graded Quiz: Abstraction, Design Patterns, and AI-Enhanced Documentation• 30分钟
4个非评分实验室• 总计240分钟
- Interface Design Challenge• 60分钟
- Plugin Architecture Design Project• 60分钟
- AI-Assisted Documentation Generation• 60分钟
- Complete Documentation Suite Creation• 60分钟
1个插件• 总计15分钟
- Guided Lab: Practical Debugging with Copilot• 15分钟
In this final module, you’ll bring together all the object-oriented programming principles learned throughout the course to build a complete console-based Media Library Management System in C#. You’ll design and implement inheritance hierarchies, polymorphic behavior, encapsulated data validation, and abstracted interfaces to manage books, DVDs, and music albums. Through guided, hands-on practice, you’ll apply real-world OOP concepts such as class relationships, method overriding, and interface-based design. You’ll also integrate AI-assisted development tools to enhance your code structure, generate documentation, and improve code readability and maintainability. By completing this capstone project, you’ll demonstrate your ability to design scalable, maintainable systems using modern OOP practices—bridging conceptual understanding with practical implementation and professional software design standards.
涵盖的内容
1篇阅读材料1个作业1个非评分实验室
1篇阅读材料• 总计20分钟
- Hands-on Course Project: Simple Media Library System – Solutions• 20分钟
1个作业• 总计90分钟
- Graded Quiz: Advanced C# Language Features & Object-Oriented Programming• 90分钟
1个非评分实验室• 总计120分钟
- Hands-on Course Project: Simple Media Library System• 120分钟
获得职业证书
将此证书添加到您的 LinkedIn 个人资料、简历或履历中。在社交媒体和绩效考核中分享。
位教师

提供方

提供方

Our goal at Microsoft is to empower every individual and organization on the planet to achieve more. In this next revolution of digital transformation, growth is being driven by technology. Our integrated cloud approach creates an unmatched platform for digital transformation. We address the real-world needs of customers by seamlessly integrating Microsoft 365, Dynamics 365, LinkedIn, GitHub, Microsoft Power Platform, and Azure to unlock business value for every organization—from large enterprises to family-run businesses. The backbone and foundation of this is Azure.
从 Design and Product 浏览更多内容
状态:免费试用免费试用BBoard Infinity
课程
状态:预览预览SSimplilearn
课程
状态:免费试用免费试用
状态:免费试用免费试用
人们为什么选择 Coursera 来帮助自己实现职业发展

Felipe M.

Jennifer J.

Larry W.

Chaitanya A.
常见问题
To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.
When you enroll in the course, you get access to all of the courses in the Certificate, and you earn a certificate when you complete the work. Your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.
更多问题
提供助学金,

