26
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
The extention method:
public static void AddRange<T>(this List<T> list, params T[] values)
{
foreach (T value in values)
list.Add(value);
}
…
10
votes
C# beginner help, How do I pass a value from a child back to the parent form?
You can also create a public property.
// Using and namespace...
public partial class FormOptions : Form
{
private string _MyString; // Use this
public string MyString …
0
votes
