// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details.
// All other rights reserved.
namespace System.Windows.Controls
{
///
/// A set of tuple functions.
///
internal static class Tuple
{
///
/// A method to create tuples.
///
/// The type of the first item.
/// The type of the second item.
/// The type of the first argument.
/// The type of the second argument.
/// The tuple to return.
public static Tuple Create(T0 arg0, T1 arg1)
{
return new Tuple(arg0, arg1);
}
}
}