2008-06-30 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System / IFormattable.cs
index ba1a2d678d4fc1592ddd425854a3c8f29c6f5522..79c7a53c0f13ae1b8b9466e7f77a570b3ee337b1 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+using System.Runtime.InteropServices;
 
 namespace System {
 
+#if NET_2_0
+        [ComVisible(true)]
+#endif
        public interface IFormattable {
-               string ToString (string format, IFormatProvider format_provider);
+               string ToString (string format, IFormatProvider formatProvider);
        }
 }