Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ObjCRuntime/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace ObjCRuntime {
/// <param name="sender">Always null.</param>
/// <param name="args">The exception data for the Objective-C exception.</param>
/// <seealso href="https://learn.microsoft.com/dotnet/ios/platform/exception-marshaling">Exception marshaling</seealso>
public delegate void MarshalObjectiveCExceptionHandler (object sender, MarshalObjectiveCExceptionEventArgs args);
public delegate void MarshalObjectiveCExceptionHandler (object? sender, MarshalObjectiveCExceptionEventArgs args);

/// <summary>The event args for the <see cref="Runtime.MarshalObjectiveCException" /> event.</summary>
/// <seealso href="https://learn.microsoft.com/dotnet/ios/platform/exception-marshaling">Exception marshaling</seealso>
Expand Down Expand Up @@ -47,7 +47,7 @@ public MarshalObjectiveCExceptionEventArgs (NSException exception, MarshalObject
/// <param name="sender">Always null.</param>
/// <param name="args">The exception data for the managed exception.</param>
/// <seealso href="https://learn.microsoft.com/dotnet/ios/platform/exception-marshaling">Exception marshaling</seealso>
public delegate void MarshalManagedExceptionHandler (object sender, MarshalManagedExceptionEventArgs args);
public delegate void MarshalManagedExceptionHandler (object? sender, MarshalManagedExceptionEventArgs args);

/// <summary>The event args for the <see cref="Runtime.MarshalManagedException" /> event.</summary>
/// <seealso href="https://learn.microsoft.com/dotnet/ios/platform/exception-marshaling">Exception marshaling</seealso>
Expand Down
2 changes: 1 addition & 1 deletion src/ObjCRuntime/Registrar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace ObjCRuntime {
/// <param name="args">To be added.</param>
/// <summary>To be added.</summary>
/// <remarks>To be added.</remarks>
public delegate void AssemblyRegistrationHandler (object sender, AssemblyRegistrationEventArgs args);
public delegate void AssemblyRegistrationHandler (object? sender, AssemblyRegistrationEventArgs args);

/// <summary>To be added.</summary>
/// <remarks>To be added.</remarks>
Expand Down
Loading
Loading