コード例 #1
0
 public void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("Apply brightness");
 }
コード例 #2
0
 public void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Applying Contrast...");
 }
コード例 #3
0
 public void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Äpply contrast");
 }
コード例 #4
0
 internal void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Apply Contrast");
 }
コード例 #5
0
 static void RemoveRedEyeFilter(Photo photo) //Our custom filter
 {
     Console.WriteLine("Apply RemoveRedEye");
 }
コード例 #6
0
 static void RemoveRedEye(Photo photo)
 {
     Console.WriteLine("Remove Red Eye");
 }
コード例 #7
0
 public void AutoFilter(Photo photo)
 {
     Console.WriteLine("Applying Auto filter");
 }
コード例 #8
0
 public void ApplyEyeMask(Photo photo)
 {
     Console.WriteLine("Apply Eye Mask");
 }
コード例 #9
0
 public void ApplyBlackAndWhite(Photo photo)
 {
     Console.WriteLine("Apply Black and White");
 }
コード例 #10
0
 public void ApplyDogFacialParts(Photo photo)
 {
     Console.WriteLine("Apply Dog Facial Parts");
 }
コード例 #11
0
 public void ApplyMustache(Photo photo)
 {
     Console.WriteLine("Apply Mustache");
 }
コード例 #12
0
 static void RemoveRedEyerFilter(Photo photo)
 {
     Console.WriteLine("Apply RemoveRedEyer");
 }
コード例 #13
0
 static void RemoveRedEye(Photo photo) => Console.WriteLine("Removed RedEye");
コード例 #14
0
 public void Resize(Photo photo)
 {
     Console.WriteLine("Apply Resize.");
 }
コード例 #15
0
ファイル: PhotoFilters.cs プロジェクト: schan1992/box
 public void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Apply contrast");
 }
コード例 #16
0
 public void ApplyFlowerCrown(Photo photo)
 {
     Console.WriteLine("Apply Flower Crown");
 }
コード例 #17
0
ファイル: Program.cs プロジェクト: zaekeon/csharp2
        //i could also create my own filter and add it to the delegate

        public static void RemoveRedeye(Photo photo)
        {
            Console.WriteLine("removing redeye");
        }
コード例 #18
0
 // Now the the framework can be extended without recompiling the code of the framework and redeploy it
 // The signature has to fit the signature of the delegate (PhotoFilterHandler) in PhotoProcessor
 static void RemoveRedEyeFilter(Photo photo)
 {
     Console.WriteLine("Applying red eye filter...");
 }
コード例 #19
0
 //create own filter to use with delegate
 static void RemoveRedEyeFilter(Photo photo)
 {
     Console.WriteLine("Remove RedEye");
 }
コード例 #20
0
 static void Test2(Photo photo)
 {
     Console.WriteLine("\nTEST2!!!\n");
 }
コード例 #21
0
 public void GreyScale(Photo photo)
 {
     Console.WriteLine("Applying Grayscale");
 }
コード例 #22
0
 public void Resize(Photo photo)
 {
     throw new NotImplementedException();
 }
コード例 #23
0
 internal void Resize(Photo photo)
 {
     Console.WriteLine("Resize photo");
 }
コード例 #24
0
 static void RemoveRedEyeFilter(Photo photo)
 {
     System.Console.WriteLine("Apply RemoveRedEye");
 }
コード例 #25
0
 static void RemoveRedEye(Photo photo)
 {
     Console.WriteLine("Apply RemoveRedEye");
 }
コード例 #26
0
 public void Resize(Photo photo)
 {
     Console.WriteLine("Photo Resize");
 }
コード例 #27
0
 public void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("Applying Brightness...");
 }
コード例 #28
0
ファイル: Program.cs プロジェクト: avbhardwaj/C-.NET
 static void AddWrinkles(Photo photo)
 {
     Console.WriteLine("Added 2 Wrinkles");
     //return 2;
 }
コード例 #29
0
 public void Resize(Photo photo)
 {
     Console.WriteLine("Resize photo");
 }
コード例 #30
0
 //to add a new filter, while not changing the PhotoProcessor / PhotoFilters classes:
 static void RemoveRedEyeFilter(Photo photo) //it must have the same signature as the delegate
 {
     System.Console.WriteLine("Apply remove red eye");
 }
コード例 #31
0
ファイル: PhotoFilters.cs プロジェクト: schan1992/box
 public void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("Apply brightness");
 }
コード例 #32
0
 internal void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("ApplyBrightness");
 }
コード例 #33
0
ファイル: PhotoFilters.cs プロジェクト: schan1992/box
 public void Resize(Photo photo)
 {
     Console.WriteLine("Resize photo");
 }
コード例 #34
0
 //allows for developers to add custom filters
 static void RemoveRedEyeFilter(Photo photo)
 {
     Console.WriteLine("Apply remove red eye");
 }
コード例 #35
0
 static void RemoveRedEyeFilter(Photo photo)
 {
     Console.WriteLine("RemoveRedEyeFilter");
 }
コード例 #36
0
ファイル: Program.cs プロジェクト: shibingit/Advanced_CSharp
 //We can now create our own filter without recompiling the code
 static void ApplySaturation(Photo photo)
 {
     Console.WriteLine("Apply staturation");
 }