Ejemplo n.º 1
0
 private static RuntimeType WithDebugName(this RuntimeType runtimeType)
 {
     if (runtimeType != null)
     {
         runtimeType.EstablishDebugName();
     }
     return(runtimeType);
 }
Ejemplo n.º 2
0
        private static RuntimeType WithDebugName(this RuntimeType runtimeType)
        {
#if DEBUG
            if (runtimeType != null)
            {
                runtimeType.EstablishDebugName();
            }
#endif
            return(runtimeType);
        }