loms
This commit is contained in:
Malloc of Kuzkycyziklistan 2017-05-02 16:05:59 -05:00
parent a9bf7201c9
commit e8bf127297
2 changed files with 9 additions and 2 deletions

View file

@ -5,7 +5,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Kneesocks { namespace Kneesocks {
public class Server { public abstract class Server {
} }
} }

View file

@ -65,4 +65,11 @@ namespace Kneesocks {
} }
} }
} }
public static class NumericExtensions {
public static T Unpack<T>(this byte[] bytes, int offset = 0) {
sizeof
return 0;
}
}
} }