Status | Data Type | Scenario | ML Task | Algorithm |
---|---|---|---|---|
In progress | .csv file | Scenario | ML Task | Algorithm |
Problem description
<?xml version="1.0"?> | |
<RuleSet Name="Personal projects minimim required" Description="This rule set contains the minimum required rules for personal projects." ToolsVersion="14.0"> | |
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers.SpecialRules"> | |
<Rule Id="SA0001" Action="Warning" /> <!-- XML comment analysis disabled --> | |
<Rule Id="SA0002" Action="Warning" /> <!-- Invalid settings file --> | |
</Rules> | |
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers.SpacingRules"> | |
<Rule Id="SA1000" Action="Warning" /> <!-- Keywords should be spaced correctly --> | |
<Rule Id="SA1001" Action="Warning" /> <!-- Commas should be spaced correctly --> | |
<Rule Id="SA1002" Action="Warning" /> <!-- Semicolons should be spaced correctly --> |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text; | |
namespace Common.Extensions | |
{ | |
public static class EnumExtensions<T> where T : struct, IConvertible |
{Description}
Help us improve out the application by sending us pull-requests or opening a GitHub Issue