Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2006-08-23 03:52:17 +0400
committerMiguel de Icaza <miguel@gnome.org>2006-08-23 03:52:17 +0400
commitc7cf01264611f4290315d99bddc9220d47738649 (patch)
tree4d5ab89689bb5e1b00b0fe9402f221ab3040d963 /mcs/class/corlib/System/Convert.cs
parent2da7bc41d2f95ab80506ffd62eaeac65d7b23ab9 (diff)
2006-08-22 Miguel de Icaza <miguel@novell.com>
* MulticastDelegate.cs: Make DynamicInvokeImpl internal in 2.0 * Converter.cs: update signature to final. * ModuleHandle.cs: Removed the [Obsolete] flags as they removed those in the final 2.0 * DateTime.cs: Fixed the signature. * Convert.cs: Removed API calls that were deprecated in final 2.0 * Enum.cs: Updated to use the obsoletes flagged in 2.0. * ConsoleCancelEventArgs.cs: Updated to 2.0 svn path=/trunk/mcs/; revision=64218
Diffstat (limited to 'mcs/class/corlib/System/Convert.cs')
-rw-r--r--mcs/class/corlib/System/Convert.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/mcs/class/corlib/System/Convert.cs b/mcs/class/corlib/System/Convert.cs
index 161a32d9e40..815366b1d3c 100644
--- a/mcs/class/corlib/System/Convert.cs
+++ b/mcs/class/corlib/System/Convert.cs
@@ -221,12 +221,6 @@ namespace System {
return ToBase64String (inArray, 0, inArray.Length, options);
}
- public static string ToBase64String (byte[] inArray, bool insertLineBreaks)
- {
- Base64FormattingOptions options = insertLineBreaks ? Base64FormattingOptions.InsertLineBreaks : Base64FormattingOptions.None;
- return ToBase64String (inArray, options);
- }
-
public static string ToBase64String (byte[] inArray, int offset, int length, Base64FormattingOptions options)
{
if (inArray == null)
@@ -254,12 +248,6 @@ namespace System {
return encoding.GetString (toBase64Transform.InternalTransformFinalBlock (inArray, offset, length));
}
}
-
- public static string ToBase64String (byte[] inArray, int offset, int length, bool insertLineBreaks)
- {
- Base64FormattingOptions options = insertLineBreaks ? Base64FormattingOptions.InsertLineBreaks : Base64FormattingOptions.None;
- return ToBase64String (inArray, offset, length, options);
- }
#endif