Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DbConnectionStringBuilderUtil.cs
Go to the documentation of this file.
2
3namespace System.Data.Common;
4
5internal static class DbConnectionStringBuilderUtil
6{
7 internal static string ConvertToString(object value)
8 {
9 try
10 {
12 }
13 catch (InvalidCastException innerException)
14 {
15 throw ADP.ConvertFailed(value.GetType(), typeof(string), innerException);
16 }
17 }
18}
static ArgumentException ConvertFailed(Type fromType, Type toType, Exception innerException)
Definition ADP.cs:825
static CultureInfo InvariantCulture