System.IO.NetFxToWinRtStreamAdapter.ThrowCloningNotSupported C# (CSharp) 메소드

ThrowCloningNotSupported() 개인적인 정적인 메소드

private static ThrowCloningNotSupported ( String methodName ) : void
methodName String
리턴 void
        private static void ThrowCloningNotSupported(String methodName)
        {
            NotSupportedException nse = new NotSupportedException(SR.Format(SR.NotSupported_CloningNotSupported, methodName));
            nse.SetErrorCode(HResults.E_NOTIMPL);
            throw nse;
        }