Duration.Addition(Duration, Duration) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Duration의 두 인스턴스를 더합니다.
public:
static System::Windows::Duration operator +(System::Windows::Duration t1, System::Windows::Duration t2);
public static System.Windows.Duration operator + (System.Windows.Duration t1, System.Windows.Duration t2);
static member ( + ) : System.Windows.Duration * System.Windows.Duration -> System.Windows.Duration
Public Shared Operator + (t1 As Duration, t2 As Duration) As Duration
매개 변수
반환
두 Duration 인스턴스에 모두 TimeSpan 값이 있으면 이 메서드는 이 두 값의 합을 반환합니다. 두 값 중 하나가 Automatic으로 설정되어 있으면 메서드는 Automatic을 반환합니다. 두 값 중 하나가 Forever으로 설정되어 있으면 메서드는 Forever을 반환합니다.
t1
또는 t2
중 하나에 값이 없으면 이 메서드는 null
을 반환합니다.
설명
이 연산자에 대 한 해당 메서드는 Duration.Add(Duration)