1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 09:08:34 +00:00

Suppressed some code issues

This commit is contained in:
Darth Affe 2016-03-26 20:43:34 +01:00
parent 1ba02cc613
commit 286a6ea284
5 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,7 @@
using System; // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using System;
using System.Drawing; using System.Drawing;
namespace CUE.NET.Brushes namespace CUE.NET.Brushes

View File

@ -1,5 +1,6 @@
// ReSharper disable CollectionNeverUpdated.Global // ReSharper disable CollectionNeverUpdated.Global
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable MemberCanBeProtected.Global
// ReSharper disable ReturnTypeCanBeEnumerable.Global // ReSharper disable ReturnTypeCanBeEnumerable.Global
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global // ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global

View File

@ -1,5 +1,6 @@
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System; using System;
@ -92,7 +93,7 @@ namespace CUE.NET.Devices.Keyboard
/// <summary> /// <summary>
/// Gets the rectangle containing all keys of the keyboard. /// Gets the rectangle containing all keys of the keyboard.
/// </summary> /// </summary>
public RectangleF KeyboardRectangle { get; private set; } public RectangleF KeyboardRectangle { get; }
/// <summary> /// <summary>
/// Gets or sets the background brush of the keyboard. /// Gets or sets the background brush of the keyboard.

View File

@ -1,4 +1,5 @@
// ReSharper disable MemberCanBePrivate.Global // ReSharper disable MemberCanBePrivate.Global
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
using System.Drawing; using System.Drawing;
using CUE.NET.Helper; using CUE.NET.Helper;

View File

@ -1,4 +1,5 @@
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
// ReSharper disable MemberCanBePrivate.Global
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;