darknessomi / darknessomi/excellibrary
Decoding DBCELL
- Dominant language
- C#
- Stars
- 22
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
```
Please modify the Decode method of DBCELL as it is causing error while
encoding back.
MemoryStream stream = new MemoryStream(Data);
BinaryReader reader = new BinaryReader(stream);
this.FirstRowOffset = reader.ReadUInt32();
//
int count = (Size - 4) / 2;
FirstCellOffsets = new List();
for (int i = 0; i < count; i++)
{
UInt16 fco = reader.ReadUInt16();
FirstCellOffsets.Add(fco);
}
```
Original issue reported on code.google.com by `jayakris...@gmail.com` on 15 Sep 2009 at 3:21
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by locating the DBCELL Decode method and reading how its parsed data is used when encoding back. Reproduce the encoding error with the supplied decoding logic, then verify that DBCELL data can be decoded and encoded again without errors.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- csharp
- Domain
- data
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 30/100