[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System / IFormatProvider.cs
index d0893fd78c01644954649ae3febfa6a516b8def9..26afc9e16a7cf4c1509a4632076a698b56d526f8 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 {
 
+        [ComVisible(true)]
        public interface IFormatProvider {
-               object GetFormat (Type format_type);
+               object GetFormat (Type formatType);
        }
 }