Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Addendum to 8f69b9b
  • Loading branch information
Saibamen authored Feb 3, 2024
1 parent 262776e commit 81de71b
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 81de71b

Please sign in to comment.