AppSettings.SubdirSubSubDirExample3Setting.ParsePrimaryKey C# (CSharp) Method

ParsePrimaryKey() public static method

Get PrimaryKey from a table row
public static ParsePrimaryKey ( TableRow row ) : string
row TableRow
return string
        public static string ParsePrimaryKey(TableRow row)
        {
            var primaryKey = row.Get_string(row.Values[0], "");
            return primaryKey;
        }
	}