.NETヘルプ BouncyCastle C# (開発者向けの仕組み) Jacob Mellor 更新日:6月 22, 2025 IronPDF をダウンロード NuGet ダウンロード DLL ダウンロード Windows 版 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる ジェミニで開く このページについてGeminiに問い合わせる 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る BouncyCastle C# は、.NET 開発者向けに幅広い暗号化アルゴリズムとツールを提供する包括的なライブラリです。 このガイドは、Bouncy Castle の基本を初心者に紹介することを目的としており、そのセキュリティプロバイダとしての能力を強調し、日常的な使用のための実用的な例を提供します。 また、IronPDF for .NET PDF ライブラリとどのように使用できるかを学びます。 Bouncy Castle への導入 Bouncy Castle は、暗号化セキュリティの分野で強力かつ多目的なライブラリとして際立っています。 これは、Java および C# に高品質のセキュリティサービスを提供することを目的とした登録されたオーストラリアの慈善プロジェクトです。 ライブラリは MIT X コンソーシアムライセンスに基づくライセンスの下で管理されており、広範囲な使用と貢献を奨励しています。 Bouncy Castle の目的を理解する Bouncy Castle はセキュリティプロバイダとして機能し、幅広い暗号化アルゴリズムを提供します。 その多用途性により、基本的な暗号化から複雑なデジタル署名まで、さまざまなセキュリティニーズに対応することができます。 初心者として、Bouncy Castle の範囲を理解することは、プロジェクトに効果的に実装するための鍵となります。 C#でのBouncy Castleの始め方 C#でのBouncy Castle の実装は、環境の設定と基本コンポーネントの理解から始まります。 セットアップ ライブラリのダウンロード: 開始するには、公式のBouncy Castle ウェブサイトから最新バージョンの Bouncy Castle パッケージをダウンロードしてください。 プロジェクトのニーズに合った正しいバージョンを選択することが重要です。 プロジェクトに統合: ダウンロード後、C# プロジェクトに Bouncy Castle を統合します。 これは通常、プロジェクト設定でライブラリを参照として追加することを含みます。 また、NuGet パッケージ マネージャーの検索バーで"Bouncycastle"と検索することで、NuGet パッケージ マネージャーを使用してダウンロードおよびインストールすることも可能です。 基本的な暗号化例 この例では、C#で Bouncy Castle を使用して AES (高度暗号化標準)を使った簡単な暗号化シナリオを示します。 using Org.BouncyCastle.Crypto; using Org.BouncyCastle.Crypto.Engines; using Org.BouncyCastle.Crypto.Generators; using Org.BouncyCastle.Crypto.Modes; using Org.BouncyCastle.Crypto.Parameters; using Org.BouncyCastle.Security; using System.Text; public class SimpleEncryption { /// <summary> /// Encrypts data using AES encryption with a given password. /// </summary> /// <param name="message">The message to encrypt.</param> /// <param name="password">The password for key derivation.</param> /// <returns>The encrypted message as a byte array.</returns> public static byte[] EncryptData(string message, string password) { // Generate a random salt var salt = new byte[8]; new SecureRandom().NextBytes(salt); // Derive key and IV from the password and salt Pkcs5S2ParametersGenerator generator = new Pkcs5S2ParametersGenerator(); generator.Init(PbeParametersGenerator.Pkcs5PasswordToBytes(password.ToCharArray()), salt, 1000); ParametersWithIV keyParam = (ParametersWithIV)generator.GenerateDerivedMacParameters(256 + 128); // Create AES cipher in CBC mode with PKCS7 padding var cipher = new PaddedBufferedBlockCipher(new CbcBlockCipher(new AesEngine())); cipher.Init(true, keyParam); // Convert message to byte array and encrypt byte[] inputBytes = Encoding.UTF8.GetBytes(message); byte[] outputBytes = new byte[cipher.GetOutputSize(inputBytes.Length)]; int length = cipher.ProcessBytes(inputBytes, 0, inputBytes.Length, outputBytes, 0); cipher.DoFinal(outputBytes, length); return outputBytes; } } using Org.BouncyCastle.Crypto; using Org.BouncyCastle.Crypto.Engines; using Org.BouncyCastle.Crypto.Generators; using Org.BouncyCastle.Crypto.Modes; using Org.BouncyCastle.Crypto.Parameters; using Org.BouncyCastle.Security; using System.Text; public class SimpleEncryption { /// <summary> /// Encrypts data using AES encryption with a given password. /// </summary> /// <param name="message">The message to encrypt.</param> /// <param name="password">The password for key derivation.</param> /// <returns>The encrypted message as a byte array.</returns> public static byte[] EncryptData(string message, string password) { // Generate a random salt var salt = new byte[8]; new SecureRandom().NextBytes(salt); // Derive key and IV from the password and salt Pkcs5S2ParametersGenerator generator = new Pkcs5S2ParametersGenerator(); generator.Init(PbeParametersGenerator.Pkcs5PasswordToBytes(password.ToCharArray()), salt, 1000); ParametersWithIV keyParam = (ParametersWithIV)generator.GenerateDerivedMacParameters(256 + 128); // Create AES cipher in CBC mode with PKCS7 padding var cipher = new PaddedBufferedBlockCipher(new CbcBlockCipher(new AesEngine())); cipher.Init(true, keyParam); // Convert message to byte array and encrypt byte[] inputBytes = Encoding.UTF8.GetBytes(message); byte[] outputBytes = new byte[cipher.GetOutputSize(inputBytes.Length)]; int length = cipher.ProcessBytes(inputBytes, 0, inputBytes.Length, outputBytes, 0); cipher.DoFinal(outputBytes, length); return outputBytes; } } Imports Org.BouncyCastle.Crypto Imports Org.BouncyCastle.Crypto.Engines Imports Org.BouncyCastle.Crypto.Generators Imports Org.BouncyCastle.Crypto.Modes Imports Org.BouncyCastle.Crypto.Parameters Imports Org.BouncyCastle.Security Imports System.Text Public Class SimpleEncryption ''' <summary> ''' Encrypts data using AES encryption with a given password. ''' </summary> ''' <param name="message">The message to encrypt.</param> ''' <param name="password">The password for key derivation.</param> ''' <returns>The encrypted message as a byte array.</returns> Public Shared Function EncryptData(ByVal message As String, ByVal password As String) As Byte() ' Generate a random salt Dim salt = New Byte(7){} Call (New SecureRandom()).NextBytes(salt) ' Derive key and IV from the password and salt Dim generator As New Pkcs5S2ParametersGenerator() generator.Init(PbeParametersGenerator.Pkcs5PasswordToBytes(password.ToCharArray()), salt, 1000) Dim keyParam As ParametersWithIV = CType(generator.GenerateDerivedMacParameters(256 + 128), ParametersWithIV) ' Create AES cipher in CBC mode with PKCS7 padding Dim cipher = New PaddedBufferedBlockCipher(New CbcBlockCipher(New AesEngine())) cipher.Init(True, keyParam) ' Convert message to byte array and encrypt Dim inputBytes() As Byte = Encoding.UTF8.GetBytes(message) Dim outputBytes(cipher.GetOutputSize(inputBytes.Length) - 1) As Byte Dim length As Integer = cipher.ProcessBytes(inputBytes, 0, inputBytes.Length, outputBytes, 0) cipher.DoFinal(outputBytes, length) Return outputBytes End Function End Class $vbLabelText $csharpLabel このコードスニペットでは、C#で Bouncy Castle の暗号化ライブラリを使用して基本的な暗号化メソッドを作成する方法を示します。 このメソッドを使用するには、暗号化したいメッセージとパスワードを持つEncryptDataを呼び出します。 例えば: string message = "Hello, this is a test message!"; string password = "StrongPassword123"; byte[] encryptedMessage = SimpleEncryption.EncryptData(message, password); Console.WriteLine("Original Message: " + message); Console.WriteLine("Encrypted Message: " + BitConverter.ToString(encryptedMessage)); string message = "Hello, this is a test message!"; string password = "StrongPassword123"; byte[] encryptedMessage = SimpleEncryption.EncryptData(message, password); Console.WriteLine("Original Message: " + message); Console.WriteLine("Encrypted Message: " + BitConverter.ToString(encryptedMessage)); Dim message As String = "Hello, this is a test message!" Dim password As String = "StrongPassword123" Dim encryptedMessage() As Byte = SimpleEncryption.EncryptData(message, password) Console.WriteLine("Original Message: " & message) Console.WriteLine("Encrypted Message: " & BitConverter.ToString(encryptedMessage)) $vbLabelText $csharpLabel この例は非常に基本的なものであり、導入として役立ちます。 実際のアプリケーションでは、暗号化プロセス中に発生する可能性のある例外を処理し、さらに強固なプラクティス(暗号化データとともに塩とIVを格納するなど)を考慮すべきです。 高度な使用法とカスタマイズ Bouncy Castle は基本的な機能に限定されていません。 カスタマイズを可能にし、高度な暗号化アルゴリズムをサポートしています。 NTRU Prime とその他の高度なアルゴリズム Bouncy Castle は、高度なNTRU Primeを含む多様なアルゴリズムのサポートを含んでいます。 これにより、開発者は特定のニーズに最も適したアルゴリズムを選択する柔軟性があります。 例外処理とセキュリティのベストプラクティス 暗号化アプリケーションでは適切な例外処理が重要です。 Bouncy Castle のメソッドは例外をスローすることができ、これらを正しく処理することで堅牢でセキュアなアプリケーションを保証します。 IronPDFの導入とBouncy Castleとの組み合わせ IronPDFは、PDF ドキュメントで作業する機能を提供し、その後 Bouncy Castle の暗号化機能を使用してセキュリティを確保します。 この二つの強力なライブラリーを組み合わせる方法は次の通りです。 IronPDF の目立った機能は、そのHTML の PDF 変換機能であり、すべてのレイアウトとスタイルを保持します。 レポート、請求書、ドキュメントに適したウェブコンテンツをPDFに変換します。 HTMLファイル、URL、およびHTML文字列をシームレスにPDFに変換できます。 IronPDFの使い方 using IronPdf; class Program { static void Main(string[] args) { var renderer = new ChromePdfRenderer(); // 1. Convert HTML String to PDF var htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>"; var pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent); pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf"); // 2. Convert HTML File to PDF var htmlFilePath = "path_to_your_html_file.html"; // Specify the path to your HTML file var pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath); pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf"); // 3. Convert URL to PDF var url = "http://ironpdf.com"; // Specify the URL var pdfFromUrl = renderer.RenderUrlAsPdf(url); pdfFromUrl.SaveAs("URLToPDF.pdf"); } } using IronPdf; class Program { static void Main(string[] args) { var renderer = new ChromePdfRenderer(); // 1. Convert HTML String to PDF var htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>"; var pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent); pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf"); // 2. Convert HTML File to PDF var htmlFilePath = "path_to_your_html_file.html"; // Specify the path to your HTML file var pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath); pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf"); // 3. Convert URL to PDF var url = "http://ironpdf.com"; // Specify the URL var pdfFromUrl = renderer.RenderUrlAsPdf(url); pdfFromUrl.SaveAs("URLToPDF.pdf"); } } Imports IronPdf Friend Class Program Shared Sub Main(ByVal args() As String) Dim renderer = New ChromePdfRenderer() ' 1. Convert HTML String to PDF Dim htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>" Dim pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent) pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf") ' 2. Convert HTML File to PDF Dim htmlFilePath = "path_to_your_html_file.html" ' Specify the path to your HTML file Dim pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath) pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf") ' 3. Convert URL to PDF Dim url = "http://ironpdf.com" ' Specify the URL Dim pdfFromUrl = renderer.RenderUrlAsPdf(url) pdfFromUrl.SaveAs("URLToPDF.pdf") End Sub End Class $vbLabelText $csharpLabel NuGet パッケージマネージャーを使用してインストール NuGet パッケージ マネージャーを使用して IronPDF を Bouncy Castle C# プロジェクトに統合するには、次の手順に従ってください。 Visual Studio を開き、ソリューションエクスプローラーでプロジェクトを右クリックします。 コンテキストメニューから"NuGetパッケージの管理…"を選択します。 "参照"タブに移動し、IronPDF を検索します。 検索結果からIronPDFライブラリを選択し、インストールボタンをクリックします。 ライセンス契約のプロンプトを承諾します。 IronPDFをプロジェクトに含める場合は、パッケージマネージャーコンソールで次のコマンドを実行してください。 Install-Package IronPdf プロジェクトに IronPDF を取得してインストールします。 NuGet ウェブサイトを使ってインストール 機能、互換性、追加のダウンロードオプションを含む IronPDF の詳細な概要については、NuGet ウェブサイトの IronPDF ページを訪れてください。https://www.nuget.org/packages/IronPdf。 DLLを介してインストール また、DLL ファイルを使用して IronPDF をプロジェクトに直接組み込むことができます。この IronPDF ダイレクトダウンロード から DLL を含む ZIP ファイルをダウンロードし、解凍してプロジェクトに DLL を含めます。 それを解凍し、プロジェクトにDLLを含めます。 IronPDF での PDF の生成 最初に、IronPDF を使用してシンプルな PDF ドキュメントを作成しましょう。 using IronPdf; public class PdfGenerator { /// <summary> /// Creates a simple PDF from HTML content. /// </summary> /// <param name="filePath">The file path to save the PDF.</param> /// <param name="content">The HTML content to render as PDF.</param> public static void CreateSimplePdf(string filePath, string content) { var renderer = new ChromePdfRenderer(); var pdf = renderer.RenderHtmlAsPdf(content); pdf.SaveAs(filePath); } } using IronPdf; public class PdfGenerator { /// <summary> /// Creates a simple PDF from HTML content. /// </summary> /// <param name="filePath">The file path to save the PDF.</param> /// <param name="content">The HTML content to render as PDF.</param> public static void CreateSimplePdf(string filePath, string content) { var renderer = new ChromePdfRenderer(); var pdf = renderer.RenderHtmlAsPdf(content); pdf.SaveAs(filePath); } } Imports IronPdf Public Class PdfGenerator ''' <summary> ''' Creates a simple PDF from HTML content. ''' </summary> ''' <param name="filePath">The file path to save the PDF.</param> ''' <param name="content">The HTML content to render as PDF.</param> Public Shared Sub CreateSimplePdf(ByVal filePath As String, ByVal content As String) Dim renderer = New ChromePdfRenderer() Dim pdf = renderer.RenderHtmlAsPdf(content) pdf.SaveAs(filePath) End Sub End Class $vbLabelText $csharpLabel このコードでは、IronPDF のChromePdfRendererクラスを使用して HTML コンテンツを PDF としてレンダリングし、ファイルに保存します。 Bouncy Castle を使用した PDF の暗号化 PDF を生成した後、Bouncy Castle を使用して暗号化することができます。 ここでは、PDFファイルを処理するためにEncryptDataメソッドを修正します: using System.IO; using System.Text; // ... [Previous Bouncy Castle using statements] public class PdfEncryption { /// <summary> /// Encrypts a PDF file using AES encryption. /// </summary> /// <param name="inputFilePath">The path to the input PDF file.</param> /// <param name="outputFilePath">The path to save the encrypted PDF file.</param> /// <param name="password">The password used for encryption.</param> public static void EncryptPdfFile(string inputFilePath, string outputFilePath, string password) { // Read the PDF file byte[] pdfBytes = File.ReadAllBytes(inputFilePath); // Encrypt the PDF bytes byte[] encryptedBytes = SimpleEncryption.EncryptData(Encoding.UTF8.GetString(pdfBytes), password); // Write the encrypted bytes to a new file File.WriteAllBytes(outputFilePath, encryptedBytes); } } using System.IO; using System.Text; // ... [Previous Bouncy Castle using statements] public class PdfEncryption { /// <summary> /// Encrypts a PDF file using AES encryption. /// </summary> /// <param name="inputFilePath">The path to the input PDF file.</param> /// <param name="outputFilePath">The path to save the encrypted PDF file.</param> /// <param name="password">The password used for encryption.</param> public static void EncryptPdfFile(string inputFilePath, string outputFilePath, string password) { // Read the PDF file byte[] pdfBytes = File.ReadAllBytes(inputFilePath); // Encrypt the PDF bytes byte[] encryptedBytes = SimpleEncryption.EncryptData(Encoding.UTF8.GetString(pdfBytes), password); // Write the encrypted bytes to a new file File.WriteAllBytes(outputFilePath, encryptedBytes); } } Imports System.IO Imports System.Text ' ... [Previous Bouncy Castle using statements] Public Class PdfEncryption ''' <summary> ''' Encrypts a PDF file using AES encryption. ''' </summary> ''' <param name="inputFilePath">The path to the input PDF file.</param> ''' <param name="outputFilePath">The path to save the encrypted PDF file.</param> ''' <param name="password">The password used for encryption.</param> Public Shared Sub EncryptPdfFile(ByVal inputFilePath As String, ByVal outputFilePath As String, ByVal password As String) ' Read the PDF file Dim pdfBytes() As Byte = File.ReadAllBytes(inputFilePath) ' Encrypt the PDF bytes Dim encryptedBytes() As Byte = SimpleEncryption.EncryptData(Encoding.UTF8.GetString(pdfBytes), password) ' Write the encrypted bytes to a new file File.WriteAllBytes(outputFilePath, encryptedBytes) End Sub End Class $vbLabelText $csharpLabel このメソッドでは、PDF ファイルをバイトとして読み取り、以前に定義したSimpleEncryptionクラスを使用してこれらのバイトを暗号化し、暗号化されたバイトを新しいファイルに書き込みます。 結論 結論として、Bouncy Castle C# と IronPDF の組み合わせは、.NET アプリケーションで PDF ドキュメントを作成およびセキュリティを確保するためのソリューションを提供します。 Bouncy Castle はデータをセキュリティで確保するために必要な暗号化ツールを提供し、IronPDF は PDF の作成と操作の容易さを提供します。 この統合は、高いレベルの文書セキュリティと機密性を必要とする状況で特に価値があります。 IronPDF の探求に興味のある方には、ライブラリは無料の試用版を提供しており、開発者がその機能を試すことができます。 本文書を本番環境に統合する場合、ライセンス情報とオプションが利用可能です。 よくある質問 BouncyCastleを使用することで、.NETアプリケーションで暗号化をどのように実装できますか? .NETアプリケーションで暗号化を実装するには、BouncyCastleライブラリを使用できます。これにより、多様な暗号化アルゴリズムを提供します。公式ウェブサイトからダウンロードするか、NuGet Package Managerを通じてプロジェクトに参照として追加します。 C#でHTMLをPDFに変換するプロセスは何ですか? C#でHTMLをPDFに変換するには、IronPDFを使用して、HTML文字列にはRenderHtmlAsPdf、HTMLファイルにはRenderHtmlFileAsPdfを利用することでPDFドキュメントを生成します。 .NETアプリケーションで生成されたPDFを保護できますか? .NETアプリケーションで生成されたPDFを保護できます。IronPDFでPDFを作成した後、BouncyCastleを使用してPDFをバイト配列に変換し、AESなどの暗号化アルゴリズムを適用して暗号化し、新しいファイルに保存します。 BouncyCastleをC#プロジェクトのPDFライブラリと統合するにはどうすればよいですか? C#プロジェクトでBouncyCastleをIronPDFのようなPDFライブラリと統合するには、NuGet Package Managerを使用して両方のライブラリをインストールします。PDF作成にはIronPDFを使用し、それらのドキュメントに暗号化セキュリティ機能を追加するにはBouncyCastleを使用します。 C#でBouncyCastleを始めるための基本的なステップは何ですか? まず、NuGet Package Managerを通じてBouncyCastleライブラリをダウンロードし、C#プロジェクトに参照として追加します。その暗号化アルゴリズムを使用して、暗号化、復号化、デジタル署名などのさまざまな目的に使用を開始できます。 購入前にPDFライブラリの機能をテストする方法はありますか? はい、IronPDFはデベロッパーがHTMLからPDF変換などの機能を模索し評価するために使用可能な無料トライアルバージョンを提供します。 BouncyCastleはどのような高度な暗号化アルゴリズムをサポートしていますか? BouncyCastleは、NTRU Primeのような最先端のものを含むさまざまな高度な暗号化アルゴリズムをサポートしており、アプリケーションに適したアルゴリズムを選ぶ開発者に柔軟性とセキュリティを提供します。 C#で暗号化操作を安全に行うためにはどうすればいいですか? 安全な環境での操作、暗号鍵を安全に保管すること、例外を適切に処理することなど、ベストプラクティスに従うことで暗号化操作の安全を確保できます。 .NETアプリケーションでPDFドキュメントを管理できますか? はい、IronPDFを使用して.NETアプリケーションでPDFドキュメントを管理できます。それにより、HTMLをPDFに作成、編集、変換することで、文書管理機能を強化します。 Jacob Mellor 今すぐエンジニアリングチームとチャット 最高技術責任者(CTO) Jacob Mellorは、Iron Softwareの最高技術責任者であり、C# PDF技術の開拓者としてその先進的な役割を担っています。Iron Softwareのコアコードベースのオリジナルデベロッパーである彼は、創業時から製品のアーキテクチャを形作り、CEOのCameron Rimingtonと協力してNASA、Tesla、全世界の政府機関を含む50人以上の会社に成長させました。Jacobは、1998年から2001年にかけてマンチェスター大学で土木工学の第一級優等学士号(BEng)を取得しました。1999年にロンドンで最初のソフトウェアビジネスを立ち上げ、2005年には最初の.NETコンポーネントを作成し、Microsoftエコシステムにおける複雑な問題の解決を専門にしました。彼の旗艦製品であるIronPDFとIronSuite .NETライブラリは、全世界で3000万以上のNuGetインストールを達成しており、彼の基本コードが世界中で使用されている開発者ツールを支えています。商業的な経験を25年間積み、コードを書くことを41年間続けるJacobは、企業向けのC#、Java、およびPython PDF技術の革新を推進し続け、次世代の技術リーダーを指導しています。 関連する記事 更新日 12月 11, 2025 CLIの簡素化と.NETの橋渡し:Curl DotNetとIronPDFを使う Jacob Mellorは、.NETエコシステムにcURLの親しみやすさをもたらすために作成されたライブラリ、CurlDotNetでこのギャップを埋めました。 詳しく読む 更新日 9月 4, 2025 RandomNumberGenerator C# RandomNumberGenerator C#クラスを使用すると、PDF生成および編集プロジェクトを次のレベルに引き上げることができます 詳しく読む 更新日 9月 4, 2025 C# String Equals(開発者向けの仕組み) 強力なPDFライブラリであるIronPDFと組み合わせることで、switchパターンマッチングは、ドキュメント処理のためのよりスマートでクリーンなロジックを構築できます 詳しく読む C# String Interpolation (開発者向けの仕組み)Math.NET C# (開発者向けの仕...
更新日 12月 11, 2025 CLIの簡素化と.NETの橋渡し:Curl DotNetとIronPDFを使う Jacob Mellorは、.NETエコシステムにcURLの親しみやすさをもたらすために作成されたライブラリ、CurlDotNetでこのギャップを埋めました。 詳しく読む
更新日 9月 4, 2025 RandomNumberGenerator C# RandomNumberGenerator C#クラスを使用すると、PDF生成および編集プロジェクトを次のレベルに引き上げることができます 詳しく読む
更新日 9月 4, 2025 C# String Equals(開発者向けの仕組み) 強力なPDFライブラリであるIronPDFと組み合わせることで、switchパターンマッチングは、ドキュメント処理のためのよりスマートでクリーンなロジックを構築できます 詳しく読む