-
## Summary
Add `ConditionalDoubleConverter` which seem to have similar name as existing `IntToBoolConverter` but the aim is totally different.
Input is a double and output is a bool, the differe…
Cfun1 updated
3 years ago
-
Sonarr Version: 2.0.0.4645
Mono Version: 4.2.3
Getting an error when trying to manually import multiple episodes in a series season folder. Single episode manual import on said folder works as int…
rukuh updated
3 years ago
-
Based on the previous paragraph, I believe the first code snippet should be:
`public class MyGenericClass where T : IComparable { }`
---
#### Document Details
⚠ *Do not edit this section. It i…
-
It has been discovered that when dealing with hashtables, it is best not to use the Count property on the hashtable as it is unreliable and can sometimes cause the following error:
> Cannot compare…
-
**Type**
```cs
System.IComparable
```
**Extension method signature**
```cs
T Max(T);
T Min(T);
```
**Parameters**
| Parameter | Type | Description |
|- |- |- |
|other|`T`|The value to …
-
**Describe the bug**
When using the automatic sort in the `DataGrid` on a column containing a `ProtoBuf.WellKnownType.TimeStamp`, an exception occurs stating that at least one item must implement `…
-
I discovered this anomoly whilst building some parameter set analysis tools, so the code example below is in relation to accessing a command's parameter set information.
The code is in the cont…
-
There appears to be an issue with the call to the JToken.Value<T> method, when working with JTokenType.Date tokens. I am in the UK and would expect to see dates always formatted in UK style i.e.…
-
[In this document](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/where-generic-type-constraint)
This class is defined:
public class AGenericClass where T : IComp…
-
Giving the following code:
```
private struct C : IComparable
{
public C(float v) => this.V = v;
public float V { get; }
public int CompareTo(float other) => this.V.CompareTo(other…