MainForm.ConvertToNull C# (CSharp) Method

ConvertToNull() static private method

static private ConvertToNull ( string text ) : string
text string
return string
	static string ConvertToNull (string text)
	{
		if (text.Length == 0)
			return null;
		return text;
	}
MainForm