Sha256: b3e59ff39d5736e16f24199fa253795a94f74be08c9d8c89055fdb3152616eff
Contents?: true
Size: 582 Bytes
Versions: 281
Compression:
Stored size: 582 Bytes
Contents
using System; public class BankAccount { public void Open() { throw new NotImplementedException("You need to implement this function."); } public void Close() { throw new NotImplementedException("You need to implement this function."); } public float Balance { get { throw new NotImplementedException("You need to implement this property."); } } public void UpdateBalance(float change) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems