2
0
Эх сурвалжийг харах

specify member variable through "this" in .ctor

svn path=/trunk/mcs/; revision=16303
Alexandre Pigolkine 22 жил өмнө
parent
commit
ae4de52ff9

+ 2 - 2
mcs/class/System.Drawing/System.Drawing.Imaging/ImageFormat.cs

@@ -17,7 +17,7 @@ namespace System.Drawing.Imaging {
 		// constructors
 		[MonoTODO]
 		public ImageFormat(Guid guid) {
-			guid = guid;
+			this.guid = guid;
 		}
 		
 		// methods
@@ -33,7 +33,7 @@ namespace System.Drawing.Imaging {
 		
 		[MonoTODO]
 		public override string ToString() {
-			throw new NotImplementedException ();
+			return String.Format("ImageFormat.Guid {0}", guid);
 		}
 
 		// properties