This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface UIPreviewForceInteractionProgress : NSObject | |
- (void)endInteraction:(BOOL)arg1; | |
@end | |
@interface UIPreviewInteractionController : NSObject | |
@property (nonatomic, readonly) UIPreviewForceInteractionProgress *interactionProgressForPresentation; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace TheDevStop.CsGuard | |
{ | |
public class Contracts | |
{ | |
public enum Kind | |
{ | |
PreCondition, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
var unsortedNames = GetNames(); | |
var sortedNames = SortNames(unsortedNames); | |
PrintArray(sortedNames); | |
} | |
// Formats and sorts an array of name strings. | |
// Input: An unordered array of strings in the format '{LastName}, {FirstName}' | |
// Output: An ordered array of strings in the format '{FirstName} {LastName}' |