Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
Delegates.cs
1
2using System.Reflection;
3
5{
12 public delegate void ProgressDelegate(object sender, float progress, string currentStep = "");
13
21 public delegate string FormatDataDelegate(object data, object parentObject, PropertyInfo currentProperty);
22
29 public delegate string FormatDataHeaderDelegate(string header, Type type);
30
36 public delegate string FindPropertyFromHeaderDelegate(string header);
37
45 public delegate void SetPropertyFromStringDelegate<T>(T dataObj, string propertyName, string value);
46}
delegate void SetPropertyFromStringDelegate< T >(T dataObj, string propertyName, string value)
Delegate to change a specific property in the data object.
delegate void ProgressDelegate(object sender, float progress, string currentStep="")
Delegate void for progress changes.
delegate string FormatDataHeaderDelegate(string header, Type type)
Delegate to format data headers.
delegate string FindPropertyFromHeaderDelegate(string header)
Delegate to find propety name by localized header string.
delegate string FormatDataDelegate(object data, object parentObject, PropertyInfo currentProperty)
Delegate to format data.