System.BCLDebug.Perf C# (CSharp) Method

Perf() private method

private Perf ( bool expr, string msg ) : void
expr bool
msg string
return void
		internal static void Perf (bool expr, string msg)
		{
		}

Usage Example

Beispiel #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