This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%REM | |
Class ArraySorter | |
Simple class to sort an array using recursive QuickSort | |
For bigger collections use ArraySortProvider | |
@author Jiri Krakora | |
@date 13.6.2012 | |
@version 1.00 | |
@uses | |
@revision |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%REM | |
Class SortableCollectionItem | |
Enumerable object to be used in sortable collections | |
Sort comparison is provided by extending of the method CompareTo | |
CompareTo method expects object of the same type as the current | |
@author Jiri Krakora | |
@date 26.06.2012 | |
@extends CollectionItem | |
@revision 1.0 Release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%REM | |
Class CollectionItem | |
Enumerable object to be used in collections | |
@author Jiri Krakora aka Lokutus | |
@date 28.3.2012 | |
@revision 1.0 Release | |
%END REM | |
Public Class CollectionItem | |
Private oID As String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%REM | |
Class Stack | |
Represents a simple last-in-first-out (LIFO) non-generic collection of objects. | |
Use Push/Pop for inserting and taking items | |
Use Top for viewing top item without removing it | |
@author Jiri Krakora | |
@date 15.6.2012 | |
@uses | |
@revision |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum ErrorCodes | |
{ | |
NotNumeric, | |
BadFormat, | |
ChecksumError | |
} | |
public class BarCodeException : ArgumentException | |
{ | |
public ErrorCodes ErrorCode { get; private set; } |
NewerOlder