没有合适的资源?快使用搜索试试~ 我知道了~
首页C# 代码规范(微软)
资源详情
资源评论
资源推荐

C# Coding Standards
Your Company Name Here
Abstract
This document contains coding conventions and style guidelines that will ensure that C# code will
be of consistent and superior quality. It includes general coding guidelines as well as discussions
on naming, formatting, and language usage patterns.

Contents
1. Introduction......................................................................................................................................................... 3
1.1 Purpose 3
1.2 Scope 3
1.3 Document Conventions 3
1.4 Feedback 3
2. C# Golden Rules................................................................................................................................................. 4
3. Formatting........................................................................................................................................................... 5
3.1 Class Layout 5
3.2 Indicating Scope 5
3.3 Indentation & Braces 6
3.4 White space 6
3.5 Long lines of code 7
4. Commenting........................................................................................................................................................ 8
4.1 Intellisense Comments 8
4.2 End-Of-Line Comments 8
4.3 Single Line Comments 8
4.4 // TODO: Comments 8
4.5 C-Style Comments 8
5. Capitalization & Naming..................................................................................................................................... 9
5.1 Capitalization 9
5.2 Naming 9
6. Programming.................................................................................................................................................... 10
6.1 Namespaces 10
6.2 Classes & Structures 10
6.3 Interfaces 10
6.4 Constants 11
6.5 Enumerations 11
6.6 Variables, Fields & Parameters 11
6.7 Properties 12
6.8 Methods 13
Your Company Name Here 1

6.9 Event Handlers 13
6.10 Error Handling 13
Appendix A. Naming Parts & Pairs..................................................................................................................... 15
A.1 Common Adjective Pairs A.2 Common Property Prefixes 15
A.3 Common Verb Pairs 15
A.4 Common Qualifiers Suffixes 15
Appendix B. References...................................................................................................................................... 16
Revision History................................................................................................................................................... 17
Your Company Name Here 2

1. Introduction
1.1 Purpose
The purpose of this document is to provide coding style standards for the development of source code written in C#.
Adhering to a coding style standard is an industry proven best-practice for making team development more efficient and
application maintenance more cost-effective. While not comprehensive, these guidelines represent the minimum level of
standardization expected in the source code of projects written in C#.
1.2 Scope
This document provides guidance on the formatting, commenting, naming, and programming style of C# source code
and is applicable to component libraries. web services, web sites, and rich client applications.
1.3 Document Conventions
Example code is shown using the Code font and shows syntax as it would be color coded in Visual Studio’s code editor.
1.4 Feedback
Feedback on these guidelines is highly encouraged. Please send any questions or comments to your application
architect.
Your Company Name Here 3
剩余17页未读,继续阅读








安全验证
文档复制为VIP权益,开通VIP直接复制

评论30