Skip to content

Commit

Permalink
Merge pull request #188 from Saibamen/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
barnhill committed Feb 3, 2024
2 parents 262776e + 81de71b commit 24d6f53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ This library was designed to give an easy class for developers to use when they

## Usage

The library contains a class called BarcodeLib with three constructors:
The library contains a class called `Barcode` with three constructors:

```csharp
Barcode();
Barcode(string);
Barcode(string, Type);
```

If you decide to create an instance with parameters, the parameters are as follows: the string is the data to be encoded into the barcode, and BarcodeLib.TYPE is the symbology to encode the data with. If you do not choose to specify the data and type at the time the instance is created, you may specify them through the appropriate property later on (but before you encode).
If you decide to create an instance with parameters, the parameters are as follows: the string is the data to be encoded into the barcode, and `Type` is the symbology to encode the data with. If you do not choose to specify the data and type at the time the instance is created, you may specify them through the appropriate property later on (but before you encode).

## Example

Expand Down

0 comments on commit 24d6f53

Please sign in to comment.