Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › C# Programming › Class library with some useful functions.

Class library with some useful functions.

Posts 1–9 of 9 · Page 1 of 1
T7
t7ancients
Class library with some useful functions.
I got bored one day and decided to practice my C# skills, so I ended up putting every function I could think of into a class library. The original purpose of the dll was to process file I/O and strings, so the name doesn't exactly fit anymore, but there are tons of functions in this file that are fairly useful and simplified so newbies could use it without knowing much.
No documentation is really needed because it's organized and simplified. If you're using this and have any questions you can totally post here or pm me. The gdi functions and mp3 function haven't been tested, and the graphics classes aren't quite implemented yet so there's no directx or opengl, just empty classes there.
I'm open to suggestions and ideas. I'm fairly new to C# so don't flame my inefficiency.

Virus Scan: VirusTotal - Free Online Virus, Malware and URL Scanner
#1 · 15y ago
TH
TheBest-1337
You should write instructions on how to use them
#2 · 15y ago
T7
t7ancients
Intellisense lists the parameters, but I'll write up a .txt file listing each function and it's use. Nearly 2000 lines of code though, so don't expect every function to be documented for a while. -_-
#3 · 15y ago
T7
t7ancients
Okay, so I typed up a basic documentation. Doesn't cover everything. Some function names explain the function well enough, so I left a bit out. Also, some imported functions were left as-is.
doc.txt is attached to this post.
#4 · 15y ago
Hassan
Hassan
There's a problem in the DLL you uploaded. C# and VB.NET both are not identifying it. Don't know what's wrong.
#5 · 15y ago
T7
t7ancients
Quote Originally Posted by Hassan View Post
There's a problem in the DLL you uploaded. C# and VB.NET both are not identifying it. Don't know what's wrong.
0_o? I have no clue what would cause them to not recognize it. They were compiled to .NET 4.0, which means it's all managed, right?
#6 · 15y ago
Hassan
Hassan
Quote Originally Posted by t7ancients View Post
0_o? I have no clue what would cause them to not recognize it. They were compiled to .NET 4.0, which means it's all managed, right?
Oh lol. I was trying it in university and the maximum framework I had here is 3.5 :/
I'll try it when I'll get home.
Functions List looks kewl.

@t7ancients
#7 · 15y ago
Jason
Jason
You can do proper XML documentation by doing three consecutive slashes (C#) or apostrophes (VB) and when someone brings up a function it will have the documentation in intellisense. Example from my last library:

[highlight=vb.net]
''' <summary>
''' Find the string contained between two points.
''' </summary>
''' <param name="MainStr">The string to search in.</param>
''' <param name="pt1">The first point to look for in 'MainStr'</param>
''' <param name="pt2">The second point to look for in 'MainStr'</param>
''' <param name="UseLastIndex">Decides whether or not to search for the last index of 'pt2'.
''' Optional, default False.</param>
''' <param name="StartFrom">Where to start searching for 'pt1' in the string.
''' Optional, default 0</param>
''' <returns>A 'StringResult' class, Value contains the string, EndIndex returns the index of the 2nd Point. Value will be empty if either point is not found.</returns>
''' <remarks>Hot sex.</remarks>
[/highlight]
#8 · 15y ago
T7
t7ancients
Thanks chooka, I was wondering how to do that.
#9 · 15y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Tags for this Thread

None