What is the best way to generate KML files using C#?
Is there a class library that I can use? I have looked and struggled to find anything interesting.
libkml doesn't have a C# implementation or wrapper.
Any help would be great.
SharpKML - library based on Google's C++ implementation of libkml
Here are some:
http://code.google.com/p/kml-library/
http://www.codeproject.com/KB/cs/Google_Earth_KML_Files.aspx
http://gekml.boseefus.com/
Related
i need to get transfer speed in FileInfo.CopyTo via c#.
But my search for a suitable alternative not hove good result.
can you help me?
You should try the solution in this answer. In essence, you have to wrap some of the Win32 API calls. The answer from Dennis has some code that should suit your needs.
I’m hardly an expert in this area so I can’t really suggest a full solution but hre are several resources to get you started
http://msdn.microsoft.com/en-us/magazine/cc163851.aspx
Can I show file copy progress using FileInfo.CopyTo() in .NET?
Is there any documentation about internal structure of Git index file? From various book I know it's binary and it contains SHAs of staged files, I know about Git 'plumbing' commands helping to reveal index content...
But how about read index by myself using C#, for example?
I know that there several implementations of this feature, so it's possible to study the code:
In Git itself;
In libgit2 written on C;
In GitSharp ported to C# from Java.
And all these options a bit complex, because need to hack around other's code. I would prefer to develop from scratch using data format explanation. If it's possible of cause.
Would appreciate your help very much!
Take a look at Documentation/technical/index-format.txt in the git.git repository:
http://git.kernel.org/?p=git/git.git;a=blob;f=Documentation/technical/index-format.txt;hb=HEAD
I heard about there being a cs file on the internet from a couple different sources that has all of the syntax in C# in a single file, which would be really good for a crash course to get ready for a job I have. Unfortunately no one could point me to the exact file, has anyone heard or seen anything like this?
Is this the one you're looking for?
http://blogs.msdn.com/b/kirillosenkov/archive/2010/05/11/updated-c-all-in-one-file.aspx
I've found this one useful:
http://www.harding.edu/fmccown/vbnet_csharp_comparison.html
There is updated AllInOne.cs document in official ANTLR grammars repository (with C# 5 & 6 support). Also you can find document with AllInOne in Roslyn.
I have made a compression in c/c++ (NO UNDER THE CLR) using the library zlib.h, and it works great. the functions that I use deflate() and inflate().
Now the file compressed by the c application, I want to decompress it with the zlib.net application, using c#, but I do not manage to get it working. When trying to decompress it, I get the error of the magic number, a number used by an specific application in the header. Does anyone know how to get through this problem, or if someone can give me an example of the inflate()/deflate() functionality in .net
for more info on how I have done my compression, is similar to the one in the link http://www.zlib.net/zlib_how.html
Also, can any one advice me of a good lib to perform compression in both c++ and .net,
Many thanks in advance...
There's some discussion on this here: Zlib-compatible compression streams?
I think Boost may work with zlib to add the header information: http://www.boost.org/doc/libs/1_36_0/libs/iostreams/doc/classes/gzip.html
I need to implement a file based multi-way B-Tree Class for c#. There is similar functionality available for C++ and C but I want to use it in C#. It also need to be available as source code as I wish to use with some alternative .NET implementations like MonoTouch.
If anyone knows of a non file based Multiway b-Tree then this could adapted faily easily to be file based. You make each Multiway page/array of nodes a record/sector in the file. And save them when they change.
Anyone?
From what I've seen the B-Tree isn't widely implemented in C#, but I could be wrong.
However a quick search, turned up this implementation and the comments look positive.
I scrounged up some stuff of CodePlex:
B+ Tree Class
SharpClaw DB Server In C# <- You may need to hunt for it, but there is one implemented in this project.
Create a C# wrapper that calls the C/C++ code?
This appears to be what you are looking for: The WB B-Tree Database for SCM, Java, C#, and C
C5 - http://www.itu.dk/research/c5/