mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
merge conflicts
This commit is contained in:
commit
14efc1fb56
1 changed files with 4 additions and 4 deletions
|
@ -27,13 +27,13 @@ namespace ShiftOS.WinForms.Applications
|
|||
kc = new KeysConverter();
|
||||
box = mybox;
|
||||
}
|
||||
public override bool CanRead => true;
|
||||
public override bool CanRead { get { return true; } }
|
||||
|
||||
public override bool CanSeek => false;
|
||||
public override bool CanSeek { get { return false; } }
|
||||
|
||||
public override bool CanWrite => true;
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public override long Length => box.Text.Length;
|
||||
public override long Length { get { return box.Text.Length; } }
|
||||
|
||||
public override long Position
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue