|
|
|
|
@ -2323,11 +2323,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
@@ -2323,11 +2323,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
|
|
|
|
|
continue; |
|
|
|
|
result.AddMember(field); |
|
|
|
|
} |
|
|
|
|
foreach (var m in type.GetMethods ()) { |
|
|
|
|
if (m.IsStatic && m.IsPublic) { |
|
|
|
|
result.AddMember(m); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return result.Result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -2351,11 +2346,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
@@ -2351,11 +2346,6 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
|
|
|
|
|
foreach (var field in trr.Type.GetFields ()) { |
|
|
|
|
result.AddMember(field); |
|
|
|
|
} |
|
|
|
|
foreach (var m in trr.Type.GetMethods ()) { |
|
|
|
|
if (m.Name == "TryParse" && m.IsStatic) { |
|
|
|
|
result.AddMember(m); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return result.Result; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|