Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.FontStyle.cs « PresentationCore « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 655873051e03eeeb9fa9bcbd9829dcf74b4481ba (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace System.Windows
{
	public struct FontStyle
	{
		public static bool operator ==(FontStyle p1, FontStyle p2) { return true; }
		public static bool operator !=(FontStyle p1, FontStyle p2) { return false; }

		public override bool Equals(object obj) => true;
		public override int GetHashCode() => 0;
	}
}