Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System.Web/UI/ControlCollection.cs')
-rw-r--r--mcs/class/referencesource/System.Web/UI/ControlCollection.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/mcs/class/referencesource/System.Web/UI/ControlCollection.cs b/mcs/class/referencesource/System.Web/UI/ControlCollection.cs
index 29e193397dc..61aacfdc5b0 100644
--- a/mcs/class/referencesource/System.Web/UI/ControlCollection.cs
+++ b/mcs/class/referencesource/System.Web/UI/ControlCollection.cs
@@ -192,7 +192,6 @@ namespace System.Web.UI {
/// </para>
/// </devdoc>
public virtual int Count {
- [System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
get {
return _size;
}
@@ -363,14 +362,12 @@ namespace System.Web.UI {
}
object IEnumerator.Current {
- [System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
get {
return Current;
}
}
public Control Current {
- [System.Runtime.TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
get {
if (index == -1)
throw new InvalidOperationException(SR.GetString(SR.ListEnumCurrentOutOfRange));