using System;
using System.ComponentModel;
namespace PortProxyGUI._extern.NStandard
{
[EditorBrowsable(EditorBrowsableState.Never)]
public static class XObject
{
///
/// Do a task for itself, then return itself.
///
///
///
///
///
public static TSelf Then(this TSelf @this, Action task)
{
task(@this);
return @this;
}
}
}