Imported Upstream version 4.2.0.179

Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
This commit is contained in:
Xamarin Public Jenkins
2015-08-26 07:17:56 -04:00
committed by Jo Shields
parent 183bba2c9a
commit 6992685b86
7507 changed files with 90259 additions and 657307 deletions

View File

@ -0,0 +1,28 @@
namespace System.Data.DataSetExtensions
{
static class Strings
{
public const string DataSetLinq_CannotCompareDeletedRow = "DataSetLinq_CannotCompareDeletedRow";
public const string DataSetLinq_CannotLoadDeletedRow = "DataSetLinq_CannotLoadDeletedRow";
public const string DataSetLinq_CannotLoadDetachedRow = "DataSetLinq_CannotLoadDetachedRow";
public const string DataSetLinq_EmptyDataRowSource = "DataSetLinq_EmptyDataRowSource";
public const string DataSetLinq_NullDataRow = "DataSetLinq_NullDataRow";
public const string LDVRowStateError = "LDVRowStateError";
public const string ToLDVUnsupported = "ToLDVUnsupported";
public static string DataSetLinq_InvalidEnumerationValue (params object[] args)
{
return SR.GetString ("DataSetLinq_InvalidEnumerationValue", args);
}
public static string DataSetLinq_NonNullableCast (object arg)
{
return SR.GetString ("DataSetLinq_NonNullableCast", arg);
}
public static string LDV_InvalidNumOfKeys (params object[] args)
{
return SR.GetString ("LDV_InvalidNumOfKeys", args);
}
}
}