I have an example as follows:
public static String DocNum { get; set; } private static String DocNum2; public static String DocNum2GetSet { get { return DocNum2; } set { DocNum2 = value; } } I was wondering if one declaration benefits the other. Simple question, hoping for a simple answer.