DebuggerStepThrough特性(c#)

Posted yaosj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DebuggerStepThrough特性(c#)相关的知识,希望对你有一定的参考价值。

单步调试程序时,有一些属性和方法不想进入,可以使用DebuggerStepThrough特性

(1)属性

        private string word;
        public string Word
        {
            [System.Diagnostics.DebuggerStepThrough]
            get { return word; }
            [System.Diagnostics.DebuggerStepThrough]
            set { word = value; }
        }

 (2)方法

        [System.Diagnostics.DebuggerStepThrough]
        public void Test()
        {
            Debug.WriteLine("Test");
        }

调试的时候不会进入Test方法

 

一些其他的特性:
CLSCompliant 声明可公开成员应该被编译器检查是否符合CLS。兼容的程序集可以在任何.NET兼
容的语言使用。
Serializable 声明结构可以被序列化
NonSerialized 声明结构不可以被序列化
DLLImport 声明是非托管代码实现的
WebMethod 声明方法应该被作为XML Web服务的一部分暴露
AttributeUsage 声明特性能应用到什么类型的程序结构。将这个特性应用到特性声明之上。

 

转载:

https://blog.csdn.net/kunar/article/details/5972756

https://blog.csdn.net/lym940928/article/details/80571425

 

以上是关于DebuggerStepThrough特性(c#)的主要内容,如果未能解决你的问题,请参考以下文章

DebuggerStepThrough requests that the debugger step through a function without any user interaction.

DebuggerStepThrough requests that the debugger step through a function without any user interaction.

随手记

《C#零基础入门之百识百例》(九十九)特性详解 -- 自定义特性

《C#零基础入门之百识百例》(九十九)特性详解 -- 自定义特性

C#语言特性及发展史