da6b7ec55f
Working on routines to get and set the date and time in the handbox.
17 lines
318 B
C#
17 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ASCOM.MeadeAutostar497
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static int ToInteger(this string str)
|
|
{
|
|
return int.Parse(str);
|
|
}
|
|
}
|
|
}
|