X Tutup
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. // // Copyright (c) Jeff Hardy 2010-2012. // namespace IronPython.SQLite { internal static class StringExtensions { public static string Format(this string format, params object[] args) { return string.Format(format, args); } public static bool IsNullOrEmpty(this string value) { return string.IsNullOrEmpty(value); } } }
X Tutup