System.Windows.Forms.DataFormats.Format.Add C# (CSharp) 메소드

Add() 정적인 개인적인 메소드

static private Add ( int id ) : System.Text.Format
id int
리턴 System.Text.Format
			internal static Format Add (int id) {
				Format f;

				f = Find (id);
				if (f == null)
					f = new Format("Format" + id.ToString(), id);
				return f;
			}

Same methods

DataFormats.Format::Add ( string name ) : System.Text.Format
DataFormats.Format