1 write to parseMethod
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (1)
183this.parseMethod = this.PropertyDescriptor.PropertyType.GetMethod("Parse", new Type[]{typeof(string), typeof(IFormatProvider)});
2 references to parseMethod
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (2)
429} else if (format != null && format.Length != 0 && this.parseMethod != null && this.FormatInfo != null) { 432value = (object) parseMethod.Invoke(null, new object[] {edit.Text, this.FormatInfo});