Fix for issue #78 & #84

This commit is contained in:
MikeMaximus
2017-06-26 10:23:57 -06:00
parent 41d11cca8e
commit d4210053ad
3 changed files with 66 additions and 6 deletions
+20
View File
@@ -258,6 +258,26 @@
End Set
End Property
ReadOnly Property IncludeArray As String()
Get
If FileType = String.Empty Then
Return New String() {}
Else
Return FileType.Split(":")
End If
End Get
End Property
ReadOnly Property ExcludeArray As String()
Get
If ExcludeList = String.Empty Then
Return New String() {}
Else
Return ExcludeList.Split(":")
End If
End Get
End Property
Public Function SyncEquals(obj As Object, eSyncFields As eOptionalSyncFields) As Boolean
Dim oGame As clsGame = TryCast(obj, clsGame)
If oGame Is Nothing Then