System.Windows.Forms.DataFormats.Format.Format C# (CSharp) Method

Format() public method

public Format ( string name, int id ) : System
name string
id int
return System
			public Format (string name, int id)
			{
				this.name = name;
				this.id = id;
				
				lock (lockobj) {
					if (formats == null)
						formats = this;
					else {
						Format f = formats;
						while (f.next != null)
							f = f.next;
						f.next = this;
					}
				}
			}
DataFormats.Format