随笔分类 -  CSharp code

1 2 3 4 5 ··· 17 下一页
C#代码学习
摘要:/// <summary> /// 目标文件类型 /// Aspose是商业软件需要购买 /// </summary> public enum FileFormat { None, Pdf, Html, Text, Doc, Docx, Xls, Xlsx, CSV, PPT, PPTx, SVG, 阅读全文
posted @ 2025-10-24 18:09 ®Geovin Du Dream Park™ 阅读(3) 评论(0) 推荐(0)
摘要:using System; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Globalization; using CsvHelper; using DocumentFor 阅读全文
posted @ 2025-10-23 19:50 ®Geovin Du Dream Park™ 阅读(2) 评论(0) 推荐(0)
摘要:ML.NET 可供你重新使用作为 .NET 开发人员已经拥有的所有知识、技能、代码和库,以便你可以轻松地将机器学习集成到 Web、移动、桌面、游戏和物联网应用中。 using System; using System.Collections.Generic; using System.Compone 阅读全文
posted @ 2025-08-28 23:02 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0)
摘要:凸显出数据的4V(Vlume 大量、Velocity 高速、Variety 多样、Value 价值)特性。 (1)键值存储(Key-Value)数据库 主要采用哈希表技术,存储特定的键和指向特定的数据指针。该模型简单、易于部署例如:Redis、Memcached、Riak KV、Hazelcast、 阅读全文
posted @ 2025-01-27 12:56 ®Geovin Du Dream Park™ 阅读(34) 评论(0) 推荐(0)
摘要:oracle sql script: CREATE OR REPLACE PROCEDURE procSelectSchool( paramSchoolId IN char, p_cursor OUT SYS_REFCURSOR ) AS BEGIN OPEN p_cursor FOR SELECT 阅读全文
posted @ 2024-12-25 20:38 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2024-12-22 11:24 ®Geovin Du Dream Park™ 阅读(27) 评论(0) 推荐(0)
摘要:发布到IIS服务器提示错误: 不能多个版本的同一DLL,虽是文件名不同,也是这个报错 未能加载文件或程序集“System.Runtime.CompilerServices.Unsafe, Version=4.0.4.0, Culture=neutral, PublicKeyToken=b03f5f7 阅读全文
posted @ 2024-06-20 19:19 ®Geovin Du Dream Park™ 阅读(375) 评论(0) 推荐(0)
摘要:/// <summary> /// 使用元组(Tuples或ValueTuple /// </summary> /// <param name="id"></param> /// <param name="name"></param> /// <returns></returns> public s 阅读全文
posted @ 2024-05-22 19:48 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GeovinDu.Ticket.Common { /// <summary> /// /// </summa 阅读全文
posted @ 2024-05-13 14:43 ®Geovin Du Dream Park™ 阅读(210) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Threading.Tasks; namespace WebAppPdfDemo { /// <summ 阅读全文
posted @ 2024-05-13 14:40 ®Geovin Du Dream Park™ 阅读(29) 评论(0) 推荐(0)
摘要:using Microsoft.SemanticKernel.ImageToText; using Microsoft.SemanticKernel; using Microsoft.SemanticKernel.Connectors.OpenAI; using Microsoft.Semantic 阅读全文
posted @ 2024-04-10 14:31 ®Geovin Du Dream Park™ 阅读(32) 评论(0) 推荐(0)
摘要://元组Tuples var person = ("Geovin Du", 30, "Soft Developer"); Console.WriteLine(person.Item1); Tuple<string, int, string> persons = new Tuple<string, i 阅读全文
posted @ 2024-04-07 11:31 ®Geovin Du Dream Park™ 阅读(87) 评论(0) 推荐(0)
摘要:/* ide: vs 2022 17.5 .net 8.0 QuestPDF 23.12.4 from: https://github.com/QuestPDF/QuestPDF/discussions/560 */ namespace ConsoleAppFontPdfDemo { using Q 阅读全文
posted @ 2024-02-02 18:11 ®Geovin Du Dream Park™ 阅读(31) 评论(0) 推荐(0)
摘要:/* IDE: VS 2022 17.5 OS: windows 10 .net 8.0 iText 8.0 System.Text.Encoding.CodePages */ namespace ConsoleAppPdfdemo { using System; using System.Coll 阅读全文
posted @ 2024-01-31 18:05 ®Geovin Du Dream Park™ 阅读(51) 评论(0) 推荐(0)
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebAppPdfDemo.WebForm1" ResponseEncoding="utf-8" %> <!DOCTYPE ht 阅读全文
posted @ 2024-01-30 18:02 ®Geovin Du Dream Park™ 阅读(112) 评论(0) 推荐(0)
摘要:/* IDE: VS 2022 17.5 OS: windows 10 .net: 8.0 生成PDF文档,从PDF文档中获取文字内容 控制台下测试 */ // See https://aka.ms/new-console-template for more information using Sy 阅读全文
posted @ 2024-01-26 18:00 ®Geovin Du Dream Park™ 阅读(370) 评论(0) 推荐(0)
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SpirePDFdemo.aspx.cs" Inherits="WebAppPdfDemo.SpirePDFdemo" %> <%@ Register Assembly="Spire. 阅读全文
posted @ 2024-01-11 08:46 ®Geovin Du Dream Park™ 阅读(40) 评论(0) 推荐(0)
摘要:using System; using NPinyin; //https://github.com/WuTong1995/NPinyin using Microsoft.International.Converters.PinYinConverter; using Microsoft.Interna 阅读全文
posted @ 2024-01-06 11:10 ®Geovin Du Dream Park™ 阅读(43) 评论(0) 推荐(0)
摘要:Python: # encoding: utf-8 # 版权所有 2023 ©涂聚文有限公司 # 许可信息查看: # 描述: 语言种类枚举类型 # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 python 3.11 # Dateti 阅读全文
posted @ 2023-12-17 06:51 ®Geovin Du Dream Park™ 阅读(27) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// <summary> /// 高德天气 /// </summary> public c 阅读全文
posted @ 2023-12-11 18:36 ®Geovin Du Dream Park™ 阅读(29) 评论(0) 推荐(0)

1 2 3 4 5 ··· 17 下一页