This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
namespace ExtensionMethods | |
{ | |
/// <summary> | |
/// String extension methods. | |
/// </summary> | |
public static class StringExtensions | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
namespace ExtensionMethods | |
{ | |
/// <summary> | |
/// <see cref="StreamReader"/> extension methods. | |
/// </summary> | |
public static class StreamReaderExtensions | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using System.Windows.Forms; | |
namespace ExtensionMethods | |
{ | |
/// <summary> | |
/// <see cref="DataGridView"/> extension methods. | |
/// </summary> | |
public static class DataGridViewExtensions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using System.Windows.Forms; | |
namespace ExtensionMethods | |
{ | |
/// <summary> | |
/// <see cref="Control"/> extension methods. | |
/// </summary> | |
public static class ControlExtensions |