-
Notifications
You must be signed in to change notification settings - Fork 0
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
06ae092
commit f44dbe3
Showing
4 changed files
with
201 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
using System.Runtime.CompilerServices; | ||
using System; | ||
|
||
namespace Windows.UI | ||
{ | ||
public struct Color | ||
public struct Color : IFormattable | ||
{ | ||
public static Color FromArgb(byte a, byte r, byte g, byte b) { return default; } | ||
public byte A { get; set; } | ||
public byte B { get; set; } | ||
public byte G { get; set; } | ||
public byte R { get; set; } | ||
public static Color FromArgb(byte a, byte r, byte g, byte b) => throw new NotImplementedException(); | ||
public override bool Equals(object o) => throw new NotImplementedException(); | ||
public bool Equals(Color color) => throw new NotImplementedException(); | ||
public override int GetHashCode() => throw new NotImplementedException(); | ||
public override string ToString() => throw new NotImplementedException(); | ||
public static bool operator ==(Color color1, Color color2) => throw new NotImplementedException(); | ||
public static bool operator !=(Color color1, Color color2) => throw new NotImplementedException(); | ||
string IFormattable.ToString(string format, IFormatProvider formatProvider) => throw new NotImplementedException(); | ||
public string ToString(IFormatProvider formatProvider) => throw new NotImplementedException(); | ||
} | ||
} | ||
|
||
namespace Windows.Foundation | ||
{ | ||
public struct Point { } | ||
public struct Rect { } | ||
public struct Size { } | ||
internal struct Point { } | ||
internal struct Rect { } | ||
internal struct Size { } | ||
} |
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