[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static bool IsInRange(
this TimeSpan sender,
TimeSpan start,
TimeSpan end
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function IsInRange (
sender As TimeSpan,
start As TimeSpan,
end As TimeSpan
) As Boolean
Dim sender As TimeSpan
Dim start As TimeSpan
Dim end As TimeSpan
Dim returnValue As Boolean
returnValue = sender.IsInRange(start,
end)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static bool IsInRange(
TimeSpan sender,
TimeSpan start,
TimeSpan end
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member IsInRange :
sender : TimeSpan *
start : TimeSpan *
end : TimeSpan -> bool
No code example is currently available or this language may not be supported.
[Missing <param name="end"/> documentation for "M:DevCase.Extensions.TimeSpanExtensions.TimeSpanExtensions.IsInRange(System.TimeSpan,System.TimeSpan,System.TimeSpan)"]
No code example is currently available or this language may not be supported.
Dim input As TimeSpan = TimeSpan.Parse("1.00:00:00")
Dim start As TimeSpan = TimeSpan.Parse("0.23:59:59")
Dim [end] As TimeSpan = TimeSpan.Parse("1.00:00:01")
Dim result As Boolean = input.IsInRange(start, [end])
Console.WriteLine(result)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.