Sha256: 2bdbfaecc8626810cc8cfcc4f87695a4a42d840c621506984f912f8db94fd5af

Contents?: true

Size: 749 Bytes

Versions: 281

Compression:

Stored size: 749 Bytes

Contents

using System;

public static class ErrorHandling
{
    public static void HandleErrorByThrowingException()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static int? HandleErrorByReturningNullableType(string input)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static bool HandleErrorWithOutParam(string input, out int result)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public static void DisposableResourcesAreDisposedWhenExceptionIsThrown(IDisposable disposableObject)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

281 entries across 281 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.97 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.96 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.95 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.94 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.93 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.92 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.91 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.90 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.89 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.88 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.87 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.86 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.85 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.84 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.83 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.82 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.81 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.80 tracks/csharp/exercises/error-handling/ErrorHandling.cs
trackler-2.2.1.79 tracks/csharp/exercises/error-handling/ErrorHandling.cs