System.Transactions.Tests.NonMsdtcPromoterTests.DtcTxCreator.Trace C# (CSharp) Method

Trace() public static method

public static Trace ( string stringToTrace ) : void
stringToTrace string
return void
            public static void Trace(string stringToTrace, params object[] args)
            {
                if (s_trace)
                {
                    Debug.WriteLine(stringToTrace, args);
                }
            }
NonMsdtcPromoterTests.DtcTxCreator