mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
refactor: Tidying
This commit is contained in:
parent
108317212c
commit
ad47c890a8
2 changed files with 5 additions and 0 deletions
|
|
@ -233,7 +233,9 @@ namespace ICD.Common.Utils
|
||||||
.GetTypeInfo()
|
.GetTypeInfo()
|
||||||
#endif
|
#endif
|
||||||
.GetProperties()
|
.GetProperties()
|
||||||
|
// ReSharper disable InvokeAsExtensionMethod
|
||||||
.Where(p => ReflectionExtensions.GetCustomAttributes<T>(p, inherit).Any());
|
.Where(p => ReflectionExtensions.GetCustomAttributes<T>(p, inherit).Any());
|
||||||
|
// ReSharper restore InvokeAsExtensionMethod
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,10 @@ namespace ICD.Common.Utils.Extensions
|
||||||
sigBuilder.Append("(");
|
sigBuilder.Append("(");
|
||||||
|
|
||||||
firstParam = true;
|
firstParam = true;
|
||||||
|
|
||||||
|
#if !SIMPLSHARP
|
||||||
bool secondParam = false;
|
bool secondParam = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
foreach (ParameterInfo param in method.GetParameters())
|
foreach (ParameterInfo param in method.GetParameters())
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue