[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static bool IsHourInRange(
this TimeSpan sender,
TimeSpan start,
TimeSpan end
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function IsHourInRange (
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.IsHourInRange(start,
end)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static bool IsHourInRange(
TimeSpan sender,
TimeSpan start,
TimeSpan end
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member IsHourInRange :
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.IsHourInRange(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("00:00:00")
Dim start As TimeSpan = TimeSpan.Parse("23:59:59")
Dim [end] As TimeSpan = TimeSpan.Parse("00:00:01")
Dim result As Boolean = input.IsHourInRange(start, [end])
Console.WriteLine(result) ' result = True
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.