-
Notifications
You must be signed in to change notification settings - Fork 0
/
ValVer.cs
42 lines (36 loc) · 854 Bytes
/
ValVer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArrayRotation
{
//Validation and verification class
public class ValVer
{
public string ValidateInput(string sequence)
{
return sequence;
}
public string Sequence
{
get
{
return _sequence;
}
set
{
if (!String.IsNullOrEmpty(value))
{
//assign value if it is not empty
_sequence = value;
}
else
{
//throw exception
}
}
}
private string _sequence;
}
}