singrdk/base/Kernel/System/IFormattable.cs

16 lines
362 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System {
using System;
//| <include path='docs/doc[@for="IFormattable"]/*' />
public interface IFormattable
{
//| <include path='docs/doc[@for="IFormattable.ToString"]/*' />
String ToString(String format);
}
}