mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 08:58:00 +02:00
made static only stuff a static class
This commit is contained in:
parent
38f4b349f2
commit
46b5bfce1e
7 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
namespace System.Diagnostics
|
namespace System.Diagnostics
|
||||||
{
|
{
|
||||||
class Check
|
static class Check
|
||||||
{
|
{
|
||||||
|
|
||||||
[Unchecked, SkipCall]
|
[Unchecked, SkipCall]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace System.Diagnostics.Contracts
|
namespace System.Diagnostics.Contracts
|
||||||
{
|
{
|
||||||
class Contract
|
static class Contract
|
||||||
{
|
{
|
||||||
public enum ContractFailureKind
|
public enum ContractFailureKind
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace System.Diagnostics
|
namespace System.Diagnostics
|
||||||
{
|
{
|
||||||
class Debug
|
static class Debug
|
||||||
{
|
{
|
||||||
#if !DEBUG
|
#if !DEBUG
|
||||||
[SkipCall]
|
[SkipCall]
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace System.IO
|
||||||
case FileReadError(FileReadError);
|
case FileReadError(FileReadError);
|
||||||
}
|
}
|
||||||
|
|
||||||
class File
|
static class File
|
||||||
{
|
{
|
||||||
public static Result<void, FileError> ReadAll(StringView path, List<uint8> outData)
|
public static Result<void, FileError> ReadAll(StringView path, List<uint8> outData)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,7 @@ using System.Threading;
|
||||||
namespace System
|
namespace System
|
||||||
{
|
{
|
||||||
[StaticInitPriority(100)]
|
[StaticInitPriority(100)]
|
||||||
class Runtime
|
static class Runtime
|
||||||
{
|
{
|
||||||
const int32 cVersion = 8;
|
const int32 cVersion = 8;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
namespace System.Text
|
namespace System.Text
|
||||||
{
|
{
|
||||||
public class UTF16
|
public static class UTF16
|
||||||
{
|
{
|
||||||
public enum EncodeError
|
public enum EncodeError
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
namespace System.Text
|
namespace System.Text
|
||||||
{
|
{
|
||||||
class UTF8
|
static class UTF8
|
||||||
{
|
{
|
||||||
public const int8[256] sTrailingBytesForUTF8 =
|
public const int8[256] sTrailingBytesForUTF8 =
|
||||||
.(
|
.(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue