-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7eeb88
commit b04b45f
Showing
472 changed files
with
10,262 additions
and
376 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
| ||
//ICONVERTIBLE | ||
#nullable enable | ||
|
||
public System.TypeCode GetTypeCode() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public bool ToBoolean(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public byte ToByte(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public char ToChar(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public System.DateTime ToDateTime(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public decimal ToDecimal(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public double ToDouble(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public short ToInt16(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public int ToInt32(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public long ToInt64(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public sbyte ToSByte(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public float ToSingle(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public string ToString(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public object ToType(System.Type conversionType, System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public ushort ToUInt16(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public uint ToUInt32(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
public ulong ToUInt64(System.IFormatProvider? provider) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
#nullable disable |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
| ||
public static IStronglyTypedId<System.Guid> Create(System.Guid value) | ||
{ | ||
return new TESTID(value); | ||
} |
This file contains 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
Oops, something went wrong.