Add project
Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
This commit is contained in:
16
Hcs.Client/GostCryptography/Asn1/Ber/IntHolder.cs
Normal file
16
Hcs.Client/GostCryptography/Asn1/Ber/IntHolder.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace GostCryptography.Asn1.Ber
|
||||
{
|
||||
public class IntHolder
|
||||
{
|
||||
public int Value;
|
||||
|
||||
public IntHolder()
|
||||
{
|
||||
}
|
||||
|
||||
public IntHolder(int value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user