2004-04-01 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / class / corlib / System.Resources / IResourceWriter.cs
index e81b82efde7e7ec723c5f93cff31a8d4bfc580b0..ec8477847492f938929cf8d8fdad738bf3920797 100644 (file)
@@ -12,14 +12,14 @@ using System;
 namespace System.Resources
 {
 
-          public interface IResourceWriter : IDisposable
-          {
-                        void AddResource (string name, byte[] value);
-                        void AddResource (string name, object value);
-                        void AddResource (string name, string value);
-
-                        void Close();
-
-                        void Generate();
-          }
+       public interface IResourceWriter : IDisposable
+       {
+               void AddResource (string name, byte[] value);
+               void AddResource (string name, object value);
+               void AddResource (string name, string value);
+               
+               void Close();
+               
+               void Generate();
+       }
 }