System.BCLDebug.Perf C# (CSharp) Метод

Perf() приватный Метод

private Perf ( bool expr, string msg ) : void
expr bool
msg string
Результат void
		internal static void Perf (bool expr, string msg)
		{
		}

Usage Example

Пример #1
0
 IEnumerator IEnumerable.GetEnumerator()
 {
     Contract.Ensures(Contract.Result <IEnumerator>() != null);
     Contract.EndContractBlock();
     BCLDebug.Perf(false, "Avoid using String's CharEnumerator until C# special cases foreach on String - use the indexed property on String instead.");
     return(new CharEnumerator(this));
 }
All Usage Examples Of System.BCLDebug::Perf